10-18-2006, 05:24 AM
|
|
|
Confirmed User
Join Date: Feb 2002
Location: ICQ: 251425 Fr/Au/Ca
Posts: 6,863
|
Quote:
Originally Posted by darksoul
the right way:
Code:
RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://(www.)?othersite.com.*$ [NC]
RewriteRule .* http://www.google.com [R,L]
|
or the perfect way
Quote:
RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://(www.)?othersite.com.*$ [NC]
rewriteRule .* http://www.final-site.com/ [R=301,L]
|
|
|
|