View Single Post
Old 2006-12-01, 02:00 PM   #2
oast
With $10,000, we'd be millionaires! We could buy all kinds of useful things like ... love!
 
oast's Avatar
 
Join Date: May 2004
Location: UK
Posts: 316
Assuming he does not send you any legitimate hits, block his domain from sending all referrers in your .htaccess

Code:
RewriteCond %{HTTP_REFERER} thisguysucks\.com [NC]
RewriteRule .* - [F,L]
You could be REAL nasty and have another page load in the frame instead
Code:
RewriteCond %{HTTP_REFERER} thisguysucks\.com [NC]
RewriteRule .* http://anothersitethatsucks.com/ [R,L]
__________________
Playboy Webmasters - The name says it all! $35 per signup or 60% revshare.

Last edited by oast; 2006-12-01 at 02:04 PM..
oast is offline   Reply With Quote