您好我的.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进行指导?我似乎无法弄清楚这一点。非常感谢任何帮助。
答案 0 :(得分:1)
<强>的index.php 强>
<?php header("location: ./index/");?>
或强>
<强>的index.html 强>
<meta http-equiv="refresh" content="0; url=/index/">
或强>
将带有重定向规则的.htaccess放在根文件夹中,并将另一个.htaccess放在index
文件夹中:RewriteEngine off
以停止循环
(在根文件夹中)