Forum Moderators: phranque
-----
There's two problems here.
1) The deny from is not blocking a certain IP. The logs show that the IP is still reading files
2) If I uncomment the rewrite block then everyone gets an error 500.
This is a copy of an .htaccess which I'm sure I had running on an old debian server with apache 1.3
This is now running on Suse 9 and apache 2.0.48
<Limit GET>
order allow,deny
deny from nnn.nnn.nnn.nnn
allow from all
</Limit>
You might be happier with:
<Files *>
Order Allow,Deny
Deny from nnn.nnn.nnn.nnn
Allow from all
</Files>
Jim