apache/iis设置网站的默认首页方法

作者:简简单单 2013-10-29

 linux Apache服务器如何设置网站默认首页

在安装目录/conf/httpd.conf文件中可以设置首页文件名查找顺序,下面是一个设置实例:

 代码如下 复制代码

   

DirectoryIndex  index.php  index.html  index.htm  default.php 

.htaccess文件设置网站的默认页

 代码如下 复制代码


deny from all

DirectoryIndex index.html index.php
order denyallow

上面代码的意思是:网站默认打开根目录下文件的顺序。首先是“index.html",若没有该文件,则打开“index.php"。

iis服务器如何设置网站默认首页

打开iis,在站点管理中-右键-属性-文档

相关文章

精彩推荐