how can I redirect from say search.yahoo.com, and google.com?
htaccess for redirecting SE traffic?
Collapse
X
-
Tags: None
-
This one works for us:
RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://google.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://www.google.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://yahoo.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://www.yahoo.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://search.yahoo.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://www.aol.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://aol.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://search.aol.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://aolsearch.aol.com [NC]
RewriteRule /* http://www.whereveryouwant.com [R,L]Comment
-
-
-
Originally posted by Mr.Soze
This one works for us:
RewriteEngine On
RewriteCond %{HTTP_REFERER} ^http://google.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://www.google.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://yahoo.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://www.yahoo.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://search.yahoo.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://www.aol.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://aol.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://search.aol.com [NC,OR]
RewriteCond %{HTTP_REFERER} ^http://aolsearch.aol.com [NC]
RewriteRule /* http://www.whereveryouwant.com [R,L]
lol
google and co will love you for this
and yes
they are toooo dump to find that out
sorry
but you cant be seriousComment

Comment