不能自动加载index.php文件的二种修改方法

发布时间:2020-05-08编辑:脚本学堂
本文介绍下,在访问php开发的项目时,无法自动加载index.php文件的方法,有遇到类似问题的朋友参考下。

方法1,修改配置文件

例如,修改配置文件D:lampapacheconfhttpd.conf加上DirectoryIndex index.hmtl index.php
内容:
 

复制代码 代码示例:
<IfModule !mpm_netware_module>
DirectoryIndex index.hmtl index.php
<IfModule !mpm_winnt_module>

方法2,修改D:lampapacheconfextra httpd-vhosts.conf文件,添加内容:
 

复制代码 代码示例:
Options +Indexes
DirectoryIndex index.php index.html

如下图:
自动加载<a href=http://www.jb200.com/wb/php/ target=_blank class=infotextkey>php文件</a>