|
If you have the IPblock, you can just use a deny statement in the .htaccess. Just put in the first 2 numbers or first 3 of the ip.
<Limit GET POST>
order Allow,Deny
Deny from XXX.XXX.
Allow from all
</Limit>
That'll drop the traffic completely and won't use the extra resources needed my mod-rewrite to redirect them or check for language or any of that stuff.
|