设置默认页面
方法1 设置全局的:
修改httpd.conf文件
<IfModule dir_module>
DirectoryIndex index.php index.php4 index.php3 index.cgi index.pl index.html index.htm index.shtml index.phtml default.php
</IfModule>
方法2 针对某一目录或某一个虚拟主机可以这么设置:
增加:DirectoryIndex default.php
Alias /aidd2008 "D:/php/web/aidd2008"
<Directory "D:/php/web/aidd2008">
Options Indexes MultiViews
AllowOverride None
order allow,deny
Allow from all
DirectoryIndex default.php
</Directory>
.
TAG: apache 虚拟主机