在这里,我将展示如何在Apache中设置或更改默认页面。 Apache默认页面很容易配置,我们只需要在以下位置配置Apache conf文件
Apache文件路径/conf/httpd.conf
在httpd.conf文件中进行以下更改。 将index.html或index.php更改为所需的任何默认页面。
#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
DirectoryIndex index.html index.php
</IfModule>
重新启动Apache〜完成。
标签: apache
翻译自: https://mkyong.com/apache/how-to-set-change-default-page-in-apache/