.htaccess重定向循环,无法让网站工作

时间:2013-06-24 12:59:10

标签: html .htaccess redirect

您好我的.htaccess正在进行重定向循环。我在example.example.com上有一个网站,我的脚本位于example.example.com/index/。当我要去example.example.com时,我只看到文件夹目录,但是我可以通过example.example.com/index/访问我的脚本,我已经使用301向前插入了一个.htaccess,但是我得到了无穷无尽的重定向循环。当有人在example.example.com中输入并获取example.example.com/index/时,如何使用php,html或.htaccess进行指导?我似乎无法弄清楚这一点。非常感谢任何帮助。

1 个答案:

答案 0 :(得分:1)

<强>的index.php <?php header("location: ./index/");?>

<强>的index.html <meta http-equiv="refresh" content="0; url=/index/">

将带有重定向规则的.htaccess放在根文件夹中,并将另一个.htaccess放在index文件夹中:RewriteEngine off以停止循环

(在根文件夹中)