Thread: Negative SEO
View Single Post
Old 07-20-2012, 04:04 PM  
Django
So Fucking Banned
 
Industry Role:
Join Date: Jul 2010
Posts: 2,578
between

1
Code:
RewriteCond %{HTTP_REFERER} badsite1\.com [NC,OR] 
RewriteCond %{HTTP_REFERER} badsite2\.com
RewriteRule .* http://www.google.com [R=301,L]
2
Code:
RewriteEngine On
RewriteCond %{HTTP_HOST} ^mydomain.com
RewriteRule (.*) http://www.mydomain.com/$1 [R=301,L]


RewriteEngine on
RewriteCond %{HTTP_HOST} !=www.mydomain.com
RewriteRule .* http://www.google.com [R=301,L]

which is the real deal?
Django is offline   Share thread on Digg Share thread on Twitter Share thread on Reddit Share thread on Facebook Reply With Quote