配置Apache2.4版本虚拟目录

来源:互联网 发布:it男 编辑:程序博客网 时间:2024/05/22 04:55

步骤1:添加下面的语句

#配置虚拟目录
<IfModule dir_module>
# directory 相当于是欢迎页面
DirectoryIndex index.html index.html index.php
#你的站点别名
Alias /web "E:/web"
<Directory "e:/web">
#这是访问权限设置----
AllowOverride None
Require all granted
</Directory>
</IfModule>


步骤2:注释掉下面的语句

#DocumentRoot "${SRVROOT}/htdocs"

0 0
原创粉丝点击