View Single Post
Old 2006-11-09, 01:36 PM   #6
gamester
If something goes wrong at the plant, blame the guy who can't speak English
 
Join Date: Oct 2006
Posts: 35
or you can block his traffic using .htaccess
just add this:
Block traffic from a single referrer:

RewriteEngine on
# Options +FollowSymlinks
RewriteCond %{HTTP_REFERER} badsite\.com [NC]
RewriteRule .* - [F]

Block traffic from multiple referrers

RewriteEngine on
# Options +FollowSymlinks
RewriteCond %{HTTP_REFERER} badsite\.com [NC,OR]
RewriteCond %{HTTP_REFERER} anotherbadsite\.com
RewriteRule .* - [F]


It`s working I use on my site
gamester is offline   Reply With Quote