我已经有了基本网址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>
如何解决此错误?