当前位置:   article > 正文

Apache2.4.9本地访问正常但是在局域网或外网IP拒绝访问_[authz_core:error] [pid 19:tid 139941357943528] [c

[authz_core:error] [pid 19:tid 139941357943528] [client 172.17.0.1:49196] ah

问题:今天配制一个测试机服务器 Apache2.4.9本地访问正常但是在局域网或外网IP拒绝访问

局域网浏览器报错如下图:

查看Apache报错日志如下信息:

[Fri May 13 15:10:08.565138 2016] [authz_core:error] [pid 4964:tid 836] [client 192.168.0.200:53640] AH01630: client denied by server configuration: F:/wamp/www/test/
[Fri May 13 15:10:09.749206 2016] [authz_core:error] [pid 4964:tid 836] [client 192.168.0.200:53640] AH01630: client denied by server configuration: F:/wamp/www/test/




解决如下:

1、关闭防火墙(注:包括杀毒软件,防火墙),当然你也可以写规则开放你服务器的端口

a、一般如果你的Apache是2.2版本以下的配制如下虚拟主机就可以解决此问题

<VirtualHost *:80>
    <Directory "F:/wamp/www/test">
        Options FollowSymLinks
        AllowOverride All
        Order allow,deny
        Allow from all
    </Directory>
    ServerAdmin 826096331@qq.com
    DocumentRoot "F:/wamp/www/test"
    ServerName www.test.com
    DirectoryIndex index.php index.html
    ServerAlias test.com
    ErrorLog "logs/test.bin-error_log"
    CustomLog "logs/test.bin-access_log" common
</VirtualHost>

b、如果你的Apache服务器是2.4.0以上的版本你还需要做第2步


2、 在虚拟主机配制文件中添加 Require all granted

<VirtualHost *:80>
    <Directory "F:/wamp/www/test">
        Options FollowSymLinks
        AllowOverride All
        Order allow,deny
        Allow from all
        Require all granted

    </Directory>
    ServerAdmin 826096331@qq.com
    DocumentRoot "F:/wamp/www/test"
    ServerName www.test.com
    DirectoryIndex index.php index.html
    ServerAlias test.com
    ErrorLog "logs/test.bin-error_log"
    CustomLog "logs/test.bin-access_log" common
</VirtualHost>

3、重启你自己的Apache服务器生效


PHP+Mysql网站源码学习请访问二当家的:PHP+Mysql网站源码学习请访问

http://www.erdangjiade.com/source




声明:本文内容由网友自发贡献,不代表【wpsshop博客】立场,版权归原作者所有,本站不承担相应法律责任。如您发现有侵权的内容,请联系我们。转载请注明出处:https://www.wpsshop.cn/w/笔触狂放9/article/detail/78252
推荐阅读
相关标签
  

闽ICP备14008679号