/ 中存储网

Apache2.2.17服务器如何设置默认主页的文件名

2013-09-24 17:12:01 来源:kejihao

1、设置全局主页:

在httpd.conf着个apache配置文件中找到如下语句

<IfModule dir_module>

DirectoryIndex index.html

</IfModule>

在这里依次写上我们想要的主页 如t.php p.php。 中间加空格

保存并重启apache这时候主页就改变了,apache会找是否有t.php,没有的话找p.php在没有的默认的是列出列表。

2、设置某一目录的主页

Alias /anstyla "E:/anstyla/src/web"

<Directory "E:/anstyla/src/web">

Options Indexes MultiViews

AllowOverride None

Order allow,deny

Allow from all

          DirectoryIndex default.php

</Directory>

如果在配置文件中加上上面的语句则创建一个虚拟目录,并制定他的主页是什么。