我的web應用程序有太多redirets錯誤(仍在重新加載頁面)的問題。我嘗試刪除cookies,沒有幫助。由htaccess引起的太多重定向
<IfModule mod_rewrite.c>
<IfModule mod_negotiation.c>
Options -MultiViews
</IfModule>
RewriteEngine On
# Redirect Trailing Slashes...
RewriteRule ^(.*)/$ /$1 [L,R=301]
# Handle Front Controller...
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule^index.php [L]
解決,問題是在PHP代碼。 –