如何删除主页的多个重定向?

时间:2018-05-03 11:23:09

标签: .htaccess url url-redirection

我的网站首页重定向多次。我想删除这些多重重定向。

我点击浏览器http://example.com

中的网址

首先,它重定向到http://www.example.com

最后,重定向到https://www.example.com

但我想从http://example.com重定向到https://www.example.com

1 个答案:

答案 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]