WAMP 本地网络访问疑难解答:“403 禁止”错误
简介:
访问本地网络内的 WAMP 服务器有时会导致“403禁止”错误。这表明您没有访问所请求资源的权限。虽然这个问题已被多次解决,但本综合指南旨在提供专门针对您的情况的详细解决方案。
问题分析:
在尝试了以下各种解决方案后互联网上没有成功,您发现从 IP 地址 (192.168.0.188:1234) 访问 WAMP 服务器时问题仍然存在本地网络。然而,从同一台电脑使用 localhost:1234 访问它是正常的。
此外,您已经尝试了另一台安装了干净的 WAMP 的电脑,它允许无需任何配置的访问。这消除了问题出在 WAMP 配置中的可能性。
解决方案:
对于 WAMPServer 版本
# onlineoffline tag - don't remove Order Deny,Allow Deny from all Allow from 127.0.0.1 Allow from ::1 Allow from localhost
至:
# onlineoffline tag - don't remove Require local Require ip 192.168.0
对于 WAMPServer 版本 3 及更高版本:
<VirtualHost *:80> ServerName localhost DocumentRoot D:/wamp/www <Directory "D:/wamp/www/"> Options +Indexes +FollowSymLinks +MultiViews AllowOverride All Require local </Directory> </VirtualHost>
至:
<VirtualHost *:80> ServerName localhost DocumentRoot D:/wamp/www <Directory "D:/wamp/www/"> Options +Indexes +FollowSymLinks +MultiViews AllowOverride All Require all granted </Directory> </VirtualHost>
附加说明:
以上是为什么在访问本地网络上的 WAMP 服务器时出现'403 Forbidden”错误?的详细内容。更多信息请关注PHP中文网其他相关文章!