.htaccess 将所有页面重定向到一个域
我有一个我从未仔细阅读过的网站,我不妨将那里的所有页面重定向到我当前的项目。我目前可以重定向到镜像网址,这意味着只有主页重定向到新主页。
但我该如何做到这一点,以便旧网站上的所有页面都重定向到 http://www.comehike.com
这是我当前的 .htaccess 文件
Options +FollowSymLinks
RewriteEngine On
RewriteRule (.*) http://www.comehike.com/$1 [R=301,L]
谢谢, 亚历克斯
I have one site that I never perused and I might as well redirect all pages there to my current project. I am currently able to redirect to a mirror url, which means only the home page redirects to the new home page.
But how can I do it so that all the pages on the old site redirect to http://www.comehike.com
Here is my current .htaccess file
Options +FollowSymLinks
RewriteEngine On
RewriteRule (.*) http://www.comehike.com/$1 [R=301,L]
Thanks,
Alex
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)