欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

apache怎么设置默认文档顺序,index.asp index.php index.html,修改哪个文件? 博客分类: centos apachehttpd.conf默认文档 

程序员文章站 2024-03-16 23:57:40
...
在你apache里有conf这个文件夹,里面有个httpd.conf

在里面找到这段

大概是这样子的
<Directory />
    Options FollowSymLinks
    DirectoryIndex index.php index.html
    AllowOverride All
    Order deny,allow
    Allow from all
</Directory>

这就是先找 index.php,没有再找index.html。。。
你挨个放就行了
弄完之后重启apache就好了,改之前最好做个备份,要不apache起不来就虾米了