您的位置:首页 > 运维架构 > Apache

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

2012-12-31 14:47 465 查看
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里也可以加上从而指向指定的页面,而不是现实一个目录
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: