1

在我的 /httpdocs/ 文件夹中,我需要更改 index.php 的文件名。我通过在我的 .htaccess 文件中写一个新行来做到这一点:

DirectoryIndex index2.php

但是,似乎 /httpdocs/ 下的所有子文件夹都在为其 DirectoryIndex 文件寻找 index2.php。有没有办法可以更改我的 /httpdocs/ 文件夹的 DirectoryIndex 文件,而不会递归地影响它下面的每个文件夹?

4

1 回答 1

1

你可以试试这个...

DirectoryIndex index2.php index.php index.html

Apache 将从左到右查找索引文件。

例如,如果index2.php不存在,它将查找index.php.

于 2011-01-11T23:28:19.343 回答