WAMP 无法在本地网络上访问 403 Forbidden
本地网络上 WAMP 服务器的访问问题可能会令人沮丧,尤其是在使用服务器的IP 地址而不是本地主机。按照此综合指南解决尝试从另一台计算机访问 WAMP 服务器时出现的 403 禁止错误。
对于 WAMPServer 版本
默认情况下, WAMPServer 限制仅从本地计算机访问服务器。要启用网络上其他设备的访问,请修改 WAMPServer 安装目录中的 httpd.conf 文件。
# 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
Require local 语句允许从本地 IP 地址进行访问,包括 127.0.0.1 和 localhost。 Require ip 192.168.0 语句允许从 192.168.0 网络内的任何 IP 地址进行访问。根据您的网络配置需要调整 IP 地址范围。
对于 WAMPServer 3 及更高版本:
对于 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 禁止错误?的详细内容。更多信息请关注PHP中文网其他相关文章!