刚刚安装的wampserver3.0.6 64位的程序,发现除了本机访问正常外,其他电脑都无法访问,它会提示“Forbidden You don’t have permission to access / on this server.“403错误,下一步我们就来解决它。
其实解决这个问题很简单。只要修改wampserver安装目录下面的C:\wamp64\bin\apache\apache2.4.23\conf\extra\httpd-vhosts.conf文件。
把里面的Require local改为Require all granted
源文件(修改红色部分)
# Virtual Hosts
#
<VirtualHost *:8080>
ServerName localhost
DocumentRoot C:/wamp64/www
<Directory “C:/wamp64/www/”>
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require local
</Directory>
</VirtualHost>
#
修改后(红色部分为修改后的)
# Virtual Hosts
#
<VirtualHost *:8080>
ServerName localhost
DocumentRoot C:/wamp64/www
<Directory “C:/wamp64/www/”>
Options +Indexes +Includes +FollowSymLinks +MultiViews
AllowOverride All
Require all granted
</Directory>
</VirtualHost>
#
修改好后保存,关闭该文件,然后重新启动所有服务,这样就可以让外网访问了。