12-14-2011, 09:00 PM
Put this in .htaccess
If the traffic comes from yoursite in the first line, it is redirected to yourblackhatsite.html
I'm sure there are other ways too, particularly using php, but this should serve basic purpose.
I'll share more helpful information/guide soon.
Press THANKS or REP me if you found it useful.
Code:
RewriteCond %{http_referer} ^http://([^.]+\.)*(yoursite)\.com
RewriteRule ^$ yourblackhatsite.html [R=302,L]
If the traffic comes from yoursite in the first line, it is redirected to yourblackhatsite.html
I'm sure there are other ways too, particularly using php, but this should serve basic purpose.
I'll share more helpful information/guide soon.
Press THANKS or REP me if you found it useful.