.htaccess - 从www https重定向到非www https

时间:2016-06-05 13:38:04

标签: apache .htaccess redirect

我有.htaccess:

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI}
RewriteCond %{HTTP_HOST} ^www\.(.+) [NC]
RewriteRule ^(.*) http://%1 [R=302,NE,L]

当我从(示例)重定向时它工作正常: 从http://重定向到正确的https:// 从http://www重定向到正确的https:// 但是当我有https://www时。我没有重定向和#34;非信任连接"。

我应该在htaccess文件中更改什么内容?

1 个答案:

答案 0 :(得分:0)

也可以在第二条规则上重定向到https,例如

RewriteCond %{HTTP_HOST} ^www\.(.+) [NC]
RewriteRule ^ https://%1%{REQUEST_URI} [R=302,NE,L]

不相关,但您不需要捕获路径,只能使用REQUEST_URI