You don‘t have permission to access this resource.
项目场景:
访问自己的搭建的网站时apache报错You don’t have permission to access this resource.
apach/conf/httpd.conf文件修改如下:
<Directory />
Options FollowSymLinks
AllowOverride all
Require local
</Directory>
修改为:
Options FollowSymLinks
AllowOverride none
Require all granted
apach/conf/httpd-vhosts.conf文件修改如下:
<Directory />
<Directory "${INSTALL_DIR}/www/">
Options FollowSymLinks
AllowOverride all
Require local
</Directory>
修改为:
<Directory />
<Directory "${INSTALL_DIR}/www/">
Options FollowSymLinks
AllowOverride all
Require all granted
</Directory>
评论已关闭