更改Apache默认起始(索引)页面:DirectoryIndex

Apache默认索引页面是index.html,修改成其他文件需要修改httpd.conf文件:

复制代码
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>

如果是虚拟主机的话,virtualhost里也可以加上从而指向指定的页面,而不是现实一个目录
原文地址:https://www.cnblogs.com/xingmeng/p/2840608.html