您的位置:首页 > 理论基础 > 计算机网络

Apache HttpServer 虚拟目录配置

2010-05-01 15:13 519 查看
<IfModule alias_module>
#
# ...
#

# html website
Alias /testdemo "D:/WebDevelop/WebProject/WebRoot/testdemo"
<Directory "D:/WebDevelop/WebProject/WebRoot/testdemo">
Options FollowSymLinks
DirectoryIndex index.html index.htm index.asp index.jsp index.php
AllowOverride None
Order allow,deny
Allow from all
</Directory>

# jsp website
# ...

# php website
# ...

</IfModule>


参考:http://www.asm32.net/article_disp.asp?id=4804
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: