我使用 mod rewrite 对吗?
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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
如果您没有像 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