- 以前的版本出现外网访问 Forbidden权限问题,修改apache目录下的
httpd.conf
即可。
#默认
<Directory />
AllowOverride none
Require all denied
</Directory>
#改为
<Directory />
Options FollowSymLinks
AllowOverride none
#Require all denied
Order deny,allow
Allow from all
</Directory>
- 在新的版本中还要修改
httpd-vhosts.conf
文件。
#默认
Require local
#改为
Require all granted