XAMPP中apache配置本地多根目录多端口

1.配置httpd.conf

禁用词语多个端口
# Listen: Allows you to bind Apache to specific IP addresses and/or
# ports, instead of the default. See also the <VirtualHost>
# directive. # Change this to Listen on specific IP addresses as shown below to
# prevent Apache from glomming onto all bound IP addresses. #Listen 12.34.56.78:80

Listen 80
Listen 8081
Listen 8082
Listen 8083 等以下内容都设置以后,可以通过netstat -n -a查看端口是否开启
开启虚拟站点

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

改为

# Virtual hosts
Include conf/extra/httpd-vhosts.conf
在末尾添加


NameVirtualHost *:80

<VirtualHost *:80>
DocumentRoot "E:/work/web/ftp/mobile_phone/public_html"
ServerName localhost
ServerAlias 127.0.0.1
<Directory "E:/work/web/ftp/mobile_phone/public_html">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>

NameVirtualHost *:8081

<VirtualHost *:8081>
DocumentRoot "E:/work/web/ftp/pc_web"
ServerName localhost:8081
ServerAlias 127.0.0.1:8081
<Directory "E:/work/web/ftp/pc_web">
Options Indexes FollowSymLinks
AllowOverride None
Order allow,deny
Allow from all
</Directory>
</VirtualHost>

但是以“localhost:8081”访问的时候,却发现出现了“Access forbidden!”的403错误,显示没有访问权限。具体的错误信息如下:

Access forbidden!

You don't have permission to access the requested directory. There is either no index document or the directory is read-protected.

If you think this is a server error, please contact the webmaster.

Error 403

权限<Directory>权限配置的问题,在httpd.conf

XAMPP默认的设置是这样的:

#<Directory />
   AllowOverride none
    Require all denied
</Directory>

修改成下面的就可以了!

<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Allow from all
</Directory>

顺利添加完成。

posted @ 2016-10-09 17:16  terytang  阅读(1646)  评论(0编辑  收藏  举报