在我的/ httpdocs /文件夹中,我需要更改index.php的文件名。我是通过在.htaccess文件中写一个新行来完成的:
DirectoryIndex index2.php
但是,似乎/ httpdocs /下的所有子文件夹都在为其DirectoryIndex文件寻找index2.php。有没有办法可以改变我的/ httpdocs /文件夹的DirectoryIndex文件而不会递归地影响它下面的每个文件夹?
答案 0 :(得分:1)
你可以试试这个......
DirectoryIndex index2.php index.php index.html
Apache将从左到右查看索引文件。
例如,如果index2.php
不存在,则会查找index.php
。