使用 httpd.conf 而不是 .htaccess 强制 WWW
我读过很多Force WWW。使用 htaccess 的技巧。 (如下)
Rewritecond %{HTTP_HOST} !^www\.domain\.com
RewriteRule (.*) http://www.domina.com/$1 [R=301,L]
我想知道是否有一种方法可以强制 WWW 在整个站点上使用 httpd.config 。
htaccess 工作得很好,但我有很多子目录,其中大多数都包含自己的 .htacess 文件,这会破坏该特定子目录中的强制 www 。
于是我就想,有没有办法强制这个“www”。进入 httpd.config,跨整个站点而不编辑 .htaccess?
谢谢。
I've read up on many Force WWW. tricks using htaccess. (As Below)
Rewritecond %{HTTP_HOST} !^www\.domain\.com
RewriteRule (.*) http://www.domina.com/$1 [R=301,L]
I'm wondering if there is a method to force WWW using httpd.config across the entire site.
The htaccess works a treat, but I have many subdirectories, most of them include there own .htacess files, which breaks the force www in that particular subdirectory.
So I was thinking, is there a way to force this "www." into httpd.config, across the entire site without editing .htaccess?
Thanks.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这应该可以做到:
并且也可以维护 HTTPS:
This should do it:
And to maintain HTTPS too:
这对我有用
This works for me