apache怎么设置默认文档顺序,index.asp index.php index.html,修改哪个文件?

在你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起不来就虾米了

猜你喜欢

转载自think1991.iteye.com/blog/2332009