当前位置: > Linux服务器 > apache >

Apache服务器 You don't have permission to access / on this s

时间:2014-08-12 22:30来源:linux.it.net.cn 作者:it

运行中的apache服务器,报如下的错误 :
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>

重启apache:
 

复制代码代码示例:
service httpd restart
 

报错消失!

 
(责任编辑:IT)
------分隔线----------------------------