对apache的php项目文件夹下浏览器默认打开什么文件的设置(如index.php)

时间:2021-08-15 12:18:30

找到AppServ\Apache2.2\conf下面的httpd.conf里面的:

<IfModule dir_module>

    DirectoryIndex index.php index.html index.htm

</IfModule>

然后将里面的内容可以添加。如:

<IfModule dir_module>

    DirectoryIndex index.php index.html index.htm 1.php 2.php 3.php

</IfModule>

就可以了。