If you can, use IPTABLES and block the IP range from the server, otherwise they will stil have accessed the server, and Apache will be slowing down checking *every* connection just to reject those few.
Matt
keyplyr
7:11 pm on Jun 5, 2005 (gmt 0)
Thanks Matt but I'm hosted on a shared server.
encyclo
7:21 pm on Jun 5, 2005 (gmt 0)
You'd be best using mod_access [httpd.apache.org] rather than mod_rewrite. It's much simpler:
Order Allow,Deny Allow from all Deny from 64.71.128/191 Deny from 65.19.134.0/31
(The above is untested and done from memory ;)
keyplyr
8:12 pm on Jun 5, 2005 (gmt 0)
Thanks encyclo, however the way host is set up (load balanced apache server clusters using BSD) mod_access alters the log data, i.e. screws with the referrers. Don't ask me why.