将www重定向到https非www

时间:2016-05-13 15:42:17

标签: .htaccess redirect

我正在尝试将我的网站从www重定向到https非www。我在htaccess文件中有这段代码:

RewriteEngine On

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

RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f

RewriteRule ^([0-9a-zA-Z].+)$ /page.php?title=$1 [L]

ErrorDocument 404 /404.php

您能否建议更改.htaccess文件?

1 个答案:

答案 0 :(得分:0)

试试这个:

RewriteEngine On

将您的网址与www匹配。并在没有www。

的情况下重写SSL https
RewriteCond %{HTTP_HOST} ^(www\.)(.*) [NC]
RewriteRule (.*) https://%2%{REQUEST_URI} [L,R=301]

匹配您没有SSL https的网址

RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} !^(www\.)(.*) [NC]
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]