我的一个网站不断受到来自某些国家/地区的垃圾邮件发送者的攻击。
事实证明,有四个罪魁祸首 IP 令人讨厌。
我尝试使用 Apache 的 mod_access 实用程序,并将以下几行添加到我的 .htaccess
<Limit GET POST>
order allow,deny
Allow from all
deny from 201.xx.xx.xx
deny from 202.xx.xx.x
deny from 201.xx.xx.xx
deny from 201.xx.xxx.xx
</Limit>
但是由于某种原因,垃圾邮件发送者仍然能够访问我的网站,并且垃圾邮件从上述 IP 继续
谁能告诉我到底哪里出错了。