如果我们刚安装好apache之后一般情况默认首页是index.html,index.htm这两种了,如果我让它默认访问的不是这两个文件,而如index.php或abc.php文件呢,这个要怎么改?下面是配置默认主页的方法。
apache配置方法:
不管是Linux版的还是Windows版的配置方法基本一样,在你的安装apache的目录下找到httpd.conf 这个配置文件,找到以下这段:
<IfModule dir_module>
DirectoryIndex index.php index.html index.htm
</IfModule>
在DirectoryIndex 后面写上你要设置的默认主页index.php名称就可以了,如下:
<IfModule dir_module>
DirectoryIndex index.php
</IfModule>
这种配置会解释 index.php,需要注意的地方:改动httpd.conf文件后,要重启一下apache。
|