我使用 mod rewrite 对吗?

发布于 2024-11-06 14:55:18 字数 362 浏览 1 评论 0原文

RewriteCond %{SERVER_NAME} ^([^.]+\.[^.]+)$ [NC]
RewriteRule ^(.*)$ http://www.%1/$1 [R=301,L]

当没有指定子域时,我想将 mysite.com 重写为 www.mysite.com 。例如,如果有人请求 test.mysite.com,那么它将保留为 test.mysite.com,但单独的 mysite.com 将被重定向到 www.mysite.com。

只是想确保我现在所拥有的是正确的,并且我正在使用的条件和规则没有可能出现问题。上面的解决方案是由一位 SO 用户推荐的,但我将 {HTTP_HOST} 替换为 {SERVER_NAME}

RewriteCond %{SERVER_NAME} ^([^.]+\.[^.]+)$ [NC]
RewriteRule ^(.*)$ http://www.%1/$1 [R=301,L]

I want to rewrite mysite.com to www.mysite.com when no subdomain is indicated. If for example someone requests test.mysite.com then it will remain test.mysite.com, but mysite.com alone will be redirected to www.mysite.com.

Just wanted to make sure that what I have now is right and there are no possible problems in the condition and rule that I'm using. Solution above was recommended by one of the fellow SO users, but I replaced {HTTP_HOST} with {SERVER_NAME}

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

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

发布评论

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

评论(1

扎心 2024-11-13 14:55:18

如果您没有像 test.test.mysite.com 这样的多个子域,它应该可以解决问题。

Anywho,关于 HTTP_HOST 与 SERVRE_NAME,请检查 HTTP_HOST 与 SERVER_NAME

it should do the trick, if you do not have multi subdomain like test.test.mysite.com

Anywho, regarding the HTTP_HOST vs SERVRE_NAME, check HTTP_HOST vs. SERVER_NAME

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