linux Apache服务器如何设置网站默认首页
在安装目录/conf/httpd.conf文件中可以设置首页文件名查找顺序,下面是一个设置实例:
代码如下 | 复制代码 |
<IfModule dir_module> DirectoryIndex index.php index.html index.htm default.php </IfModule> |
.htaccess文件设置网站的默认页
代码如下 | 复制代码 |
<Files ~ "^.(htaccess|htpasswd)$"> deny from all </Files> DirectoryIndex index.html index.php order denyallow |
上面代码的意思是:网站默认打开根目录下文件的顺序。首先是“index.html",若没有该文件,则打开“index.php"。
iis服务器如何设置网站默认首页
打开iis,在站点管理中-右键-属性-文档
时间: 2024-10-25 21:07:10