apache默认配置 访问目录403错误 出现You don't have permission to access / on this server


将httpd的配置文件 /etc/httpd/conf/httpd.conf中找到:
<Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</Directory>

改为:
<Directory />
Options Indexes FollowSymLinks
AllowOverride None
</Directory>
原文地址:https://www.cnblogs.com/jifeng/p/1832597.html