更改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里也可以加上从而指向指定的页面,而不是现实一个目录
posted @ 2012-12-31 14:47  幻星宇  阅读(788)  评论(0编辑  收藏  举报