HTTP 错误 403 - 禁止访问 Internet Explorer【整理】

HTTP 错误 403 - 禁止访问 Internet Explorer【整理】
在启动apache后出现
Forbidden  You don't have permission to access " on this server.
解决办法:
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from allow
    Satisfy all
</Directory>
把deny from all中的deny改成了allow,保存后重起了 apache

你可能感兴趣的:(HTTP 错误 403 - 禁止访问 Internet Explorer【整理】)