SSL错误:重定向过多次

时间:2016-09-25 05:08:51

标签: .htaccess ssl

我的htaccess文件实际上包含了这个

 <IfModule mod_rewrite.c>
 RewriteEngine On
 RewriteBase /index.php/
 RewriteRule ^index\.php$ - [L]
 RewriteCond %{REQUEST_FILENAME} !-f
 RewriteCond %{REQUEST_FILENAME} !-d
 RewriteRule . /index.php [L]
 </IfModule>

然后我添加了

 RewriteCond %{SERVER_PORT} 80 
 RewriteRule ^(.*)$ https://domain.in/$1 [R,L]

导致无限重定向循环。

0 个答案:

没有答案
相关问题