答案 0 :(得分:1)
将此复制到您的.htaccess文件。
RewriteEngine On
RewriteCond %{SERVER_PORT} !=443
RewriteCond %{HTTP_HOST} ^(www.example)?.com$ [NC]
RewriteRule ^$ http://www.example.com%{REQUEST_URI} [R,L]
答案 1 :(得分:0)
要重定向到https://www
,您可以使用:
RewriteEngine on
RewriteCond ℅{HTTPS} off [OR]
RewriteCond ℅{HTTP_HOST} !^www\.
RewriteRule .* https://www.example.com℅{REQUEST_URI} [NE,L,R=301]