将站点重定向到https和非www .htaccess

时间:2015-04-09 16:17:45

标签: .htaccess redirect https

我似乎无法找到我想要重定向到https和网站的非www版本的答案

所以http://www.example.com重定向到https://example.com

1 个答案:

答案 0 :(得分:0)

您可以在一个规则中执行此操作:

RewriteEngine On

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