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>

问题解决。

QQ截图20151117110607

QQ截图20151117111224

posted @ 2015-11-17 11:13  linuxnewbie  阅读(5882)  评论(1编辑  收藏  举报