http到https htacces - 重定向了你太多次了

时间:2018-05-13 15:12:39

标签: .htaccess

我已经有了基本网址www.example.com,我希望有这样的基本网址:https://www.example.com

这是在我的httaccess文件中:

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

但是当我使用Chrome访问我的网页时,它会出错:

The example.com Web has redirected you too many times.

在那段代码之后,我在.htaccess中有一些其他代码 - 可能会导致问题?

 <IfModule mod_rewrite.c>
  -----
  </IfModule>

如何解决此错误?

0 个答案:

没有答案