服务报价 | 域名主机 | 网络营销 | 软件工具| [加入收藏]
 热线电话: #
当前位置: 主页 > 开发教程 > linux教程 >

apache怎么设置默认首页?

时间:2016-03-11 14:54来源: 作者: 点击:
如果我们刚安装好apache之后一般情况默认首页是index.html,index.htm这两种了,如果我让它默认访问的不是这两个文件,而如index.php或abc.php文件呢,这个要怎么改?下面是配置默认主页的方
如果我们刚安装好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。
 
(责任编辑:最模板)
顶一下
(0)
0%
踩一下
(0)
0%
------分隔线----------------------------
栏目列表
热点内容