htaccess:摆脱https和www

时间:2015-08-29 00:03:25

标签: .htaccess http url redirect https

对于重写和htaccess,我是新手。我已经在这个网站上做了一些阅读,但没有找到解决我确切问题的方法。基本上我想要的是强制所有 https:// https://www www。的实例只是 HTTP://

感谢任何帮助!

1 个答案:

答案 0 :(得分:0)

您可以在.htaccess

中使用
RewriteCond %{HTTPS} on [OR]
RewriteCond %{HTTP_HOST} ^.+\.domain\.com$ [NC]
RewriteRule ^ http://domain.com%{REQUEST_URI} [NE,R=301,L]