当前位置: > Linux服务器 > apache >

apache虚拟目录配置

时间:2016-07-29 03:27来源:linux.it.net.cn 作者:IT
apache虚拟目录配置
打开httpd.conf
第一步
在<IfModule dir_module>
    DirectoryIndex index.html
</IfModule>下面加上如下的内容


#配置虚拟目录
<IfModule dir_module>
    #Directory 相当于是欢迎页面  
    DirectoryIndex index.html index.htm index.php
    #你的站点别名
    Alias /wamp/www "E:/wamp/www"
    <Directory E:/wamp/www>
    #这里是设置访问权限
    Order allow,deny
    Allow from all
    </Directory>
</IfModule>


第二步
在DocumentRoot "D:/myhttp/apache/htdocs"前面加上
“#” 变成 #DocumentRoot "D:/myhttp/apache/htdocs"

第三步
重启apache (责任编辑:IT)
------分隔线----------------------------