我的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]
导致无限重定向循环。