0

您好,我的 .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 进行指导?我似乎无法弄清楚这一点。任何帮助是极大的赞赏。

4

1 回答 1

1

索引.php <?php header("location: ./index/");?>

或者

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

或者

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

(在根文件夹中)

于 2013-06-24T13:09:02.677 回答