我的网站首页重定向多次。我想删除这些多重重定向。
我点击浏览器http://example.com
中的网址首先,它重定向到http://www.example.com
最后,重定向到https://www.example.com
答案 0 :(得分:1)
您可以使用:
RewriteCond %{HTTP_HOST} !^www\. [OR,NC]
RewriteCond %{HTTPS} off
RewriteRule ^ https://www.exemple.com%{REQUEST_URI} [NE,R=301,L]
或没有域名:
RewriteCond %{HTTP_HOST} !^www\. [NC]
RewriteRule ^ https://www.%{HTTP_HOST}%{REQUEST_URI} [NE,L,R=301]
RewriteCond %{HTTPS} off
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [NE,L,R=301]