访问Apache服务器时,默认是直接访问htdocs目录下的index.html,这是在conf/httpd.conf中配置的。
查到conf/httpd.conf中的<IfModule dir_module>,其默认内容如下:
<IfModule dir_module>
DirectoryIndex index.php index.html
</IfModule>
访问Apache服务器时,它默认的从这里找文件,先找index.php,再找index.html,找不到时报错说没有访问权限。根据这个规则,只需要将要显示的文件设置在第一位就好啦。
转载自
https://www.php.cn/apache/441264.html
网友评论