您的位置:首页 > 运维架构 > Apache

Apache刚装好重启出现You don't have permission to access / on this server. 错误的解决办法

2010-04-14 17:53 1061 查看
找到Apache的配置文件httpd.conf打开 ,找到

# Each directory to which Apache has access can be configured with respect
# to which services and features are allowed and/or disabled in that
# directory (and its subdirectories).
#
# First, we configure the "default" to be a very restrictive set of
# features.
#
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>


替换成

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


OK 问题解决
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签: 
相关文章推荐