0

我想要两个索引文件。一 - index.php 和一 - index.html。但我还想在服务器上创建默认文件 - index.php(我在本地环境中有两个文件)。我已经尝试在 .htaccess 中添加以下行: DirectoryIndex index.php 但 index.html 仍然首先加载。有没有不删除其中一个文件的解决方案。

4

1 回答 1

0

您可以指定多个值:

DirectoryIndex index.php index.html

为了使其工作,您需要允许覆盖 apache 配置中的索引

AllowOverride indexes

http://httpd.apache.org/docs/2.2/mod/mod_dir.html

一个常见错误是您的 .htaccess 文件根本没有被读取。确保您的 .htaccess 被读取的一个好方法是在其中输入一个错字并确保您得到一个错误。

于 2013-01-05T23:44:25.493 回答