我正在尝试在我的localhost上解决问题。
我有一个使用以下.htaccess文件的脚本
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /agg/
RewriteCond %{HTTP_HOST} ^localhost
RewriteRule ^(.*)$ http://localhost/agg/$1 [R=permanent,L]
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . /agg/index.php [L]
</IfModule>
&#34; AGG&#34;是本地主机上存储文件的文件夹。
(完整路径:C:\ wamp \ www \ agg)
当我尝试访问http://localhost/agg/时,它会给我&#34;此网页有一个重定向循环&#34;错误。
apache rewrite_module打开,php版本为5.4.12
还有一个名为&#34; config.php&#34;的文件。具有以下代码:
<?php
$siteurl = "http://localhost";
//.... etc
?>
任何帮助都将不胜感激。
答案 0 :(得分:0)
你的第一条规则是罪魁祸首,导致这个循环。请在/agg/.htaccess
:
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteBase /agg/
RewriteRule ^index\.php$ - [L]
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule . index.php [L]
</IfModule>