localhost访问错误Forbidden You don't have permission to access / on this server.解决办法(亲测)

在httpd.conf文件下找到这段:

<Directory />
    Options FollowSymLinks
    AllowOverride None
   Order deny,allow
    Deny from all
</Directory>

然后修改为:

<Directory />  
    Options Indexes FollowSymLinks  
    AllowOverride None  
</Directory>

问题解决。

localhost访问错误Forbidden You don't have permission to access / on this server.解决办法(亲测)

localhost访问错误Forbidden You don't have permission to access / on this server.解决办法(亲测)