02-11-2011, 11:14 PM
.htaccess and ban the range? Thats what i do.
order allow,deny
allow from all
deny from 61.0.0.0/255 <- not the real ip to ban ofcourse.
Or you could redirect them to a place more appropriate?
RewriteCond %{REMOTE_ADDR} ^61\.0\.0\.0
RewriteCond $1 !^index\.php$
RewriteRule (.*) http://www.antichildporn.org/ [R=302,L] <-- just an example. I use this for people that post rude stuff on my forum.
order allow,deny
allow from all
deny from 61.0.0.0/255 <- not the real ip to ban ofcourse.
Or you could redirect them to a place more appropriate?
RewriteCond %{REMOTE_ADDR} ^61\.0\.0\.0
RewriteCond $1 !^index\.php$
RewriteRule (.*) http://www.antichildporn.org/ [R=302,L] <-- just an example. I use this for people that post rude stuff on my forum.