发新话题
打印

apache windows环境下修改默认入口文件index

apache windows环境下修改默认入口文件index

进入配置文件 conf\httpd.conf

#
# DirectoryIndex: sets the file that Apache will serve if a directory
# is requested.
#
<IfModule dir_module>
    DirectoryIndex index.html index.php #增加相应的入口文件即可
</IfModule>

最后重启apache

TOP

发新话题