.htaccess http到https重定向次数过多

时间:2017-08-14 17:09:10

标签: php apache .htaccess redirect mod-rewrite

我的域名是www.supergenscript.com。它托管在www.easycloud.us上,所有DNS都使用CloudFlare进行配置。我的.htaccess文件中有以下代码。

RewriteEngine on
RewriteCond %{SERVER_PORT} ^80$
RewriteRule ^(.*)$ https://%{SERVER_NAME}%{REQUEST_URI} [L,R=301]

除了我的.htaccess文件之外没有其他内容。这是我的.htaccess现在拥有的完整代码。我正在使用此代码,目的是自动从http重定向到https。它从http更改为https但索引页面未加载。相反,浏览器继续加载,最后花了一些时间后它会出错。

以下是我在Google Chrome浏览器上收到的错误

This page isn’t working

www.supergenscript.com redirected you too many times.
Try clearing your cookies.
ERR_TOO_MANY_REDIRECTS

请帮我找到解决这个问题的方法。我真的很沮丧。

2 个答案:

答案 0 :(得分:2)

检查一下

RewriteEngine On
RewriteCond %{HTTPS} off
RewriteRule ^(.*)$ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

或者这个

RewriteEngine on
RewriteCond %{HTTPS} off [OR]
RewriteCond %{HTTP_HOST} !^www\.
RewriteRule ^ https://www.supergenscript.com%{REQUEST_URI} [NC,L]

答案 1 :(得分:1)

试试这个:

RewriteCond %{HTTP:X-Forwarded-Proto} !http
RewriteRule ^ https://%{HTTP_HOST}%{REQUEST_URI} [L,R=301]

以上解决方案对我不起作用