修改PHP网站默认首页

一般默认的首页文件是index.php index.php3 index.html index.htm之类的,要想修改为myNewIndex.php,

 进入服务器Apache目录,找到httpd.conf文件,记事本打卡,搜索"DirectoryIndex",可以看到

<IfModule dir_module>
    DirectoryIndex index.php index.php3 index.html index.htm
</IfModule>

添加myNewIndex.php即可,顺序代表了优先级

原文地址:https://www.cnblogs.com/coolbear/p/3338520.html