安装apache遇到You don’t have permission to access this resource. 原因与解决方法

给公司配置PHP服务器,用apache进行操作,遇到如标题那个问题,无法进行远程HTTP请求,解决办法如下

apach/conf/httpd.conf文件修改如下:


    Options FollowSymLinks
    AllowOverride all
    Require local

修改为:


    Options FollowSymLinks
    AllowOverride none
    Require all granted

以及下方的

DocumentRoot "${INSTALL_DIR}/www"

    Options FollowSymLinks
    AllowOverride all
    Require local

修改为:

DocumentRoot "${INSTALL_DIR}/www"

    Options Indexes FollowSymLinks
    AllowOverride all
    Require all granted

此时还是不行,被干的稀碎,参考大佬原帖:https://bbs.csdn.net/topics/390904273?list=23494857

但是他可能没提醒用户httpd-vhosts.conf也要改,路径在apach/conf/extra/httpd-vhosts.conf里面

# Virtual Hosts
#

  ServerName localhost
  ServerAlias localhost
  DocumentRoot "${INSTALL_DIR}/www"
 
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride all
    Require local
 

修改为:

# Virtual Hosts
#

  #ServerName localhost
  ServerAlias localhost
  DocumentRoot "${INSTALL_DIR}/www"
 
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride None
    Require all granted
 


然后重启apache,成功。

安装apache遇到You don’t have permission to access this resource. 原因与解决方法_第1张图片

希望文章对你有帮助

你可能感兴趣的:(php)