Apache阻止访问该网站的IP地址

时间:2010-07-16 11:16:10

标签: apache block

有人试图访问

这样的网页
  

// //中mysqladmin脚本/ setup.php

是一些黑客企图还是......?

如果是,那么我如何阻止其IP访问我的网站?

通过htaccess或其他什么?

2 个答案:

答案 0 :(得分:8)

作为对那些仍然在这里的人的旧问题的更新:

Order Allow Deny自Apache 2.4起不推荐使用,Require应该使用。

<RequireAll>
    Require all granted
    Require not ip 1.2.3.4
</RequireAll>

也可以指定范围,网络掩码等。

https://httpd.apache.org/docs/2.4/mod/mod_access_compat.html(已弃用) https://httpd.apache.org/docs/2.4/mod/mod_authz_core.html#require

答案 1 :(得分:7)