发新帖

[Apache] wamp站点报错:You don't have permission to access this resource.

零下一度 9月前 579

wamp站点报错:You don't have permission to access this resource.


解决办法:将Apache站点配置的Require local改成Require all granted

<VirtualHost *:81>
  ServerName localhost
  ServerAlias localhost
  DocumentRoot "${INSTALL_DIR}/www"
  <Directory "${INSTALL_DIR}/www/">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    Require local
  </Directory>
</VirtualHost>

改成

<VirtualHost *:81>
  ServerName localhost
  ServerAlias localhost
  DocumentRoot "${INSTALL_DIR}/www"
  <Directory "${INSTALL_DIR}/www/">
    Options +Indexes +Includes +FollowSymLinks +MultiViews
    AllowOverride All
    Require all granted
  </Directory>
</VirtualHost>




最新回复 (0)
返回
零下一度
主题数
931
帖子数
0
注册排名
1