AH01630:服务器配置拒绝客户端

时间:2015-04-10 13:22:34

标签: apache2 client server denied

我假设我已经尝试了这里提到的所有可能的解决方案,但我仍然无法解决问题。

问题在于httpd.conf和.htaccess文件。

如果我运行tail -f access.log,我会:

  

AH01630:服务器配置拒绝客户端:/opt/rpkica/share/rpki/wsgi/rpki.wsgi

这是我使用的配置:

<Directory /opt/rpkica/share/rpki/wsgi>

    Order allow,deny
    AllowOverride All
    Allow from All
    #Require all granted
  </Directory>

2 个答案:

答案 0 :(得分:0)

尝试从该文档根目录“递归”查找该虚拟主机的.htaccess文件。 .htacces优先于主配置,因此请检查是否在任何.htaccess文件中拒绝配置。

答案 1 :(得分:0)

您需要检查httpd.conf文件

<Directory /path/to/directory>
    Options FollowSymlinks
    AllowOverride none
    Require all granted
  </Directory>

如果您在 XAMPP服务器 上出现错误,请在路径/ opt / lampp / etc下打开 httpd-xampp.conf 文件/额外

<LocationMatch "^/(?i:(?:xampp|security|licenses|phpmyadmin|webalizer|server-status|server-info))">
 #       Require local
        ErrorDocument 403 /error/XAMPP_FORBIDDEN.html.var
</LocationMatch>

只需命令&#34;要求本地&#34;然后重新启动你的灯泡服务

# /opt/lampp/lampp restart