删除www并将https添加到域

时间:2013-01-23 15:05:57

标签: apache .htaccess

我有http://www.example.com,我希望它是https://example.com

我正在使用以下.htaccess规则,但它没有从https://www.example.com正确重定向

RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
RewriteRule ^(.*)$ https://example.com/$1 [R=301,L]

RewriteCond %{HTTPS} !on
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [R=301,L]

0 个答案:

没有答案