我需要重定向所有下列地址:如何重定向https://開頭WWW到https://和http:// WWW到https://和http://到https://
http://www.example.com
https://www.example.com
http://example.com
到https://example.com
在.htaccess文件中使用永久重定向。
我需要重定向所有下列地址:如何重定向https://開頭WWW到https://和http:// WWW到https://和http://到https://
http://www.example.com
https://www.example.com
http://example.com
到https://example.com
在.htaccess文件中使用永久重定向。
我會嘗試以下方法:
RewriteEngine On
# URL with www rewrite to https without www
RewriteCond %{HTTP_HOST} ^(www\.)(.*) [NC]
RewriteRule (.*) https://%2%{REQUEST_URI} [L,R=301]
# URL without www rewrite to https
RewriteCond %{HTTPS} off
RewriteCond %{HTTP_HOST} !^(www\.)(.*) [NC]
RewriteRule (.*) https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]
有幾個答案這對SO。你有嘗試過什麼嗎? – anubhava