ezeke 发表于 2015-8-5 10:19:04

apache出现You don't have permission to access / on this server. 提示(解决方法)

今天在windows上搭建php环境,配置完成后,在浏览器中运行出现在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.
#

    Options FollowSymLinks
    AllowOverride None
    Order deny,allow
    Deny from all
这里改成


    Options Indexes FollowSymLinks
    AllowOverride None
问题解决
页: [1]
查看完整版本: apache出现You don't have permission to access / on this server. 提示(解决方法)