您的位置:首页 > 运维架构 > Apache

Apache 建立虚拟目录和设置默认页面

2008-04-21 03:43 609 查看
1.找到"conf/httpd.conf" 文件

2.在httpd.conf里面加了如下语句

Alias /anstyla "E:/anstyla/src/web"
<Directory "E:/anstyla/src/web">
Options Indexes MultiViews
AllowOverride None
Order allow,deny
Allow from all
</Directory>

在此模块下建立虚拟目录,Alias /虚拟目录名称/ "虚拟目录路径,以[/]代替[/]"

例如:Alias /admin "D:/web/admin/"

(*)/admin 为虚拟目录名称,一般不用在名称后加"/",若加入,每次都要在虚拟目录后输入"/"才能访问网站;D:/web/admin/ 为虚拟目录的物理路径.

3.重启Apache
这步最重要,常常忘了,呵呵.

设置默认页面

方法1 设置全局的:
<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 针对某一目录可以这么设置:

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>

=====================================================

Apache 用的少,怎么设置虚拟目录和默认页面老是忘了,今天记下先.
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: