Forum Moderators: DixonJones
I'm hoping I've banned the address with the following in my .htaccess
order allow,deny
allow from all
deny from 217.44.228.85
217.44.228.85 seems to be part of a BT block. I'm guessing a broadband connection. Would a complaint to abuse@bt.com be in order. Is there another address I should use. I had a quick look at BT's website but it has so much stuff on it that it is hard to find an address to email about this.
Subject Header your message something like:
"Bandwidth Theft Issues from your IP Block."
<Limit GET POST>
order deny,allow
deny from 217.44.228.85
deny from blah
deny from blah
...
..
.
.
...is the way I have mine.
Pendanticist.
You do need to use deny,allow. Otherwise the allow from all will override the deny.
Apache mod_access documentation [httpd.apache.org].
order deny,allow
deny from 217.44.228.85
Jim