apache出现You don't have permission to access / on this server. 提示
今天在新的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 a very restrictive set of
# features.
#
< Directory />
Options FollowSymLinks
AllowOverride None
Order deny,allow
Deny from all
</ Directory >
# 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 >
Options Indexes FollowSymLinks
AllowOverride None
</ Directory >
问题解决
本文介绍了解决Apache服务器中“You don't have permission to access / on this server”错误的方法。通过修改默认目录权限设置,实现了对网站根目录的有效访问。
2721

被折叠的 条评论
为什么被折叠?



