欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页

访问 Apache 服务器提示(Forbidden You don't have permission to access / on this server 403)

程序员文章站 2022-05-29 22:25:46
...
找到 apache 配置文件 "httpd.conf"

找到如下代码块:
<Directory />
    AllowOverride All
    Require all denied
</Directory>

内容可能如下:     //内容可能存在差异
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
</Directory>

需要修改:
 Deny from all         //拒绝了一切连接
    或
 Require all denied    //拒绝所有访问

修改如下:
Require all denied => Require all granted
Deny from all      => Allow from all