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

找到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>

就可以了。



你可能感兴趣的:(apache,PHP,浏览器,Module)