将所有www和http重定向到裸体https

时间:2014-03-28 02:07:14

标签: .htaccess redirect

htaccess重写规则对我没有意义!我只想尝试重定向以下内容:

http://www.domain.com
https://www.domain.com
http://domain.com

https://domain.com

1 个答案:

答案 0 :(得分:0)

您可以在根.htaccess文件中使用此规则:

RewriteEngine On

RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} ^www\. [NC]
RewriteRule ^ https://domain.com%{REQUEST_URI} [R=301,L,NE]