apache出现:You don't have permission to access / on this server的解决
来源:岁月联盟
时间:2012-02-15
01
# Each directory to which Apache has access can be configured with respect
02
# to which services and features are allowed and/or disabled in that
03
# directory (and its subdirectories).
04
#
05
# First, we configure the "default" to be a very restrictive set of
06
# features.
07
#
08
<Directory />
09
Options FollowSymLinks
10
AllowOverride None
11
Order deny,allow
12
Deny from all
13
</Directory>
这里改成
1
<Directory />
2
Options Indexes FollowSymLinks
3
AllowOverride None
4
</Directory>
问题解决
摘自 爱国者的博客
上一篇:squid故障汇总