关注联楷|返回首页 | 网站案例 | 帮助中心

合作共赢、快速高效、优质的网站建设提供商

上海网站建设 

服务热线:021-61394118

上海联楷科技

apache出现You don't have permission to access

作者:佚名   时间:2012-05-10   分享到:

今天在新的linux上跑原来的代码,使用的虚拟主机的模式进行操作。几个相关的网站放在一个文件里,想法是通过网站列出的目录进行相应的网站进行操作。一切设置完成后,在浏览器中运行出现在You don't have permission to access / on this server.  提示。查了一下apache手册找到问题所在处。这里定义了默认对网站根的访问权限。

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 very restrictive set of 
features.  
#
<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all  
</Directory>

这里改成
 

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

或改成

<Directory />
    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Allow from all #或Allow from {ip} 
</Directory>



如没特殊注明,文章均为上海联楷网络原创,转载请注明来自:http://www.linksj.com/contact/20151229/n7542.html

上海联楷网络新闻