我正在尝试在我的本地主机上安装 drupal6,但安装未完成。它在创建数据库表后卡住了。
它重定向到http://localhost/sie/install.php?locale=en&profile=default&op=start&id=105
并给出以下错误。
在火狐中
Firefox has detected that the server is redirecting the request for this address in a way that will never complete.
此问题有时可能是由禁用或拒绝接受 cookie 引起的。
在 Chrome 中
此网页有重定向循环
我尝试启用 cookie/添加 localhost 作为例外。请帮我解决一下这个。
<IfModule mod_rewrite.c>
RewriteEngine on
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_URI} !=/favicon.ico
RewriteRule ^(.*)$ index.php?q=$1 [L,QSA]
</IfModule>