.htaccess 将所有页面重定向到一个域

发布于 2024-10-20 17:59:48 字数 372 浏览 1 评论 0原文

我有一个我从未仔细阅读过的网站,我不妨将那里的所有页面重定向到我当前的项目。我目前可以重定向到镜像网址,这意味着只有主页重定向到新主页。

但我该如何做到这一点,以便旧网站上的所有页面都重定向到 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

北城挽邺 2024-10-27 17:59:48
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^old-domain.com [NC]
RewriteRule ^(.*)$ http://new-domain.com/$1 [L,R=301]
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^old-domain.com [NC]
RewriteRule ^(.*)$ http://new-domain.com/$1 [L,R=301]
歌枕肩 2024-10-27 17:59:48
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?old\.com
RewriteRule (.*) http://www.new.com/$1 [R=301,L]
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^(www\.)?old\.com
RewriteRule (.*) http://www.new.com/$1 [R=301,L]
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文