除了errordocs之外,Apache拒绝来自IP范围的请求

时间:2012-12-30 14:01:45

标签: apache .htaccess

我有一个如下的.htacces来阻止来自多个IP子网的所有请求。

<Files ~ "^.*$">
        order allow,deny
        allow from all
        Deny from ipa.ddr.ess.sub/net
        Deny from ipa.ddr.ess.sub/net
        ...
</Files>

问题是我的错误日志显示每个错误IP地址的两个错误:

... client denied by server configuration: .../public_html/node
... client denied by server configuration: .../public_html/403.shtml

如何更改“文件”块,使其拒绝来自这些IP地址的所有请求,错误文档(403.shtml)除外?

检查了几个问题,但是他们似乎没有使用ip地址的额外拒绝。例如。 Deny all files except the index using apache

0 个答案:

没有答案