Access forbidden! You don’t have permission to access the requested object. It is either read-prote

xampp上去运行的时候,发现有问题,没法运行,报以下的错误:

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

这时可以找到apache的httpd.conf文件,找出

修改成如下:

[objc]  view plain  copy
 
  1.   
  2.     Options All  
  3.     AllowOverride All  
  4.     Order deny,allow  
  5.     Allow from all  
  6.   
  7.   
  8. 如果还是不行,可以  

chmod -R 777 /Applications/XAMPP/xamppfiles/htdocs

即可运行了。


你可能感兴趣的:(PHP)