Apache httpd 2.4.x 403错误处理

错误信息:
AH01630: client denied by server configuration
引发原因:
在Apache http 2.2中的部分配置,在2.4.x中失效。
(详见http://httpd.apache.org/docs/2.4/upgrading.html)
处理方式:
将自己配置的

<Directory "X:/xxx">
    Order allow,deny
    Allow from all
</Directory>

更换为如下配置即可(其余的参考官方文档)
<Directory "X:/xxx">
    Require all granted
</Directory>


你可能感兴趣的:(apache)