提示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>
这里改成

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

我这里的问题依然没有解决

相关文章:

  • 2021-08-03
  • 2022-01-12
  • 2021-12-20
  • 2021-11-27
  • 2022-12-23
  • 2022-12-23
  • 2021-12-29
  • 2021-11-19
猜你喜欢
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2022-12-23
  • 2021-11-27
相关资源
相似解决方案