Apache Http Server多站点的目录权限问题

1,修改文件:Apache Http Server安装目录apache2.2confhttpd-vhosts.conf
添加监听端口新端口,比如8001:

Listen 80
Listen 8001

 

2,打开已经注释掉的配置:

#Virtual hosts
Include conf/extra/httpd-vhosts.conf

 

3,在httpd-vhosts.conf文件中添加<VirtualHost标签>:

  1. <VirtualHost 10.2.20.12:8001>
  2.     ServerAdmin xxxxxx@live.com
  3.     DocumentRoot D:/httproot/viedonew
  4.     ServerName localhost_8001

  5.     AddDefaultCharset UTF-8

  6.     <Directory "D:/httproot/viedonew/">
  7.         Options All
  8.         AllowOverride All
  9.         Order allow,deny
  10.         Allow from all
  11.     </Directory>

  12. </VirtualHost>

4,重启apache服务器

阅读(854) | 评论(0) | 转发(0) |
给主人留下些什么吧!~~
评论热议
原文地址:https://www.cnblogs.com/black/p/5171858.html