设置默认页面
方法1 设置全局的:
DirectoryIndex index.php index.php4 index.php3 index.cgi index.pl index.html index.htm index.shtml index.phtml default.php
方法2 针对某一目录可以这么设置:
Alias /aidd2009 "D:/php/web/aidd2009"
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
DirectoryIndex default.php
设置虚拟目录
1.找到"conf/httpd.conf" 文件
2.在节点:<IfModule alias_module>里增加
Alias /aidd2009 "D:/php/web/aidd2009"
其中 aidd2009 是你想要访问的虚拟目录; D:/php/web/aidd2009 为物理路径,以[/]代替[]"
我们就在</IfModule>后面接着加:
<Directory "D:/php/web/aidd2009">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>
(*)aidd2009 为虚拟目录名称,一般不用在名称后加"/",若加入,每次都要在虚拟目录后输入"/"才能访问网站
Alias /gt "D:/PHP/gt"
<Directory "D:/PHP/gt">
<IfModule php5_module>
<Files "index.php">
php_admin_flag safe_mode off
</Files>
</IfModule>
AllowOverride AuthConfig
Order allow,deny
Allow from all
</Directory>
3.重启Apache
声明: 此文观点不代表本站立场;转载须要保留原文链接;版权疑问请联系我们。