从 www.host.com 重定向到 .htaccess 中的 host.com

发布于 2024-11-05 13:23:35 字数 75 浏览 0 评论 0 原文

有人可以在 .htaccess 文件中向我提供正确的指令,以便将 www.host.com 请求重定向到 host.com,反之亦然吗?

Can someone please provide me with the proper directives in .htaccess file to have www.host.com requests to be redirected to host.com and vice versa?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

夏の忆 2024-11-12 13:23:35

这将从 http://www.yoursite.com 重定向到 http://yoursite.com

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^yoursite\.com
RewriteRule (.*) http://yoursite.com/$1 [R=301, L]

这是相反的:

Options +FollowSymlinks
RewriteEngine On
RewriteCond %{http_host} ^yoursite.com [NC]
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [R=301,L]

上面是我在我的服务器上使用的,它工作得很好。

This will redirect from http://www.yoursite.com to http://yoursite.com:

Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} .
RewriteCond %{HTTP_HOST} !^yoursite\.com
RewriteRule (.*) http://yoursite.com/$1 [R=301, L]

And this is the reverse:

Options +FollowSymlinks
RewriteEngine On
RewriteCond %{http_host} ^yoursite.com [NC]
RewriteRule ^(.*)$ http://www.yoursite.com/$1 [R=301,L]

The above is what I use on my server, and it works perfectly.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文