xampp Apache Access forbidden! Error 403
2019-04-11 09:54:12

windows下使用xampp Apache配置虚拟主机,访问相关网页出现:

xampp Apache Access forbidden! Error 403
Access forbidden!  You don’t have permission to access the requested object. It is either read-protected or not readable by the server.

只需要将http.conf文件中的:

<Directory /> 
     AllowOverride none
     Require all denied 
 </Directory>

改成:

<Directory />
      ServerName test
      Options None  
      Order allow,deny  
      Allow from all   
  </Directory>

保存重启apache即可。