Weird redirect trick?

NicheFocus

Newbie
Joined
Aug 20, 2011
Messages
21
Reaction score
4
Hi guys.

I have come across a weird redirection trick in the serps. I was just wondering if anyone knows how to pull this off?

The site in question is second in the serps for a keyword im trying to rank for. When you click the site in the SERPS it automatically redirects you to the vendor site (the site is an affiliate site) with the affiliate tracking present.

The weird thing is if you type the sites URL into the address bar it takes you to the actual affiliate site?

I triple checked to make sure i was navigating to the same Url from the serps and when I manually type in the Url.

It seems like a really efficient way to take people to a vendor site through your affiliate site. Any ideas how to do this? I checked a number of "check your redirection" sites. Some claim a 301 redirect but most can't see a redirection at all. :confused:
 
So I didn't understand everything but, when people come from google they stay on the URL which is clicked on google, when they directly type the site url they get redirected?
If yes, he is just tracking if the people come from google or not, this is really easy to make with php and there are some little script in BHW to do the same.
 
No the opposite. When the URL is clicked on Google they get redirected and when they type the URL they stay at the URL. Ill try and look for some of the PHP scripts you mentioned thanks for the help.

Do you know how Google would treat this however? I noticed the site in question dropped from the rankings for a few days and then shot back up again. I'm unsure if this was because of the redirect or a slap because of dodgy backlinks.

As far as I can tell this guy has brought an expired domain and then blasted it to the top with a high volume of low quality links. Then slapped a redirect on to funnel as much traffic to the affiliate offer as possible. Then when Google drops him from the ranking he removes the redirect shoots back up again, rinse and repeat.
 
Thats the thing he doesn't buy a new domain his original domain just shoots back up again. Hes not doing this with one offer either he has multiple pages all ranking high for affiliate products all with different redirects...
 
check his backlink history do the same backlinks and watch if you rank too
 
It's just google cloaking - very common these days. Do u want to reprt him, or to apply the same trick he does?
 
I want to follow in this guys footsteps! He has 4 or 5 offers on the same domain as far as I can tell. All ranking in the top 10 for very popular affiliate products, all redirecting traffic. Based on my experiences in the spaces hes in that one spammed, clocked affiliate site must be earning around 4 - 8k a month.
 
Lol it's called referrer sniffing.. there's nothing new about it.... just look at the $_SERVER['HTTP_REFERER'] if u r talkin PHP...
 
Thanks for the help guys I have a few things to go on. Off to do some research I go.
 
Could someone elaborate a little bit how to apply this trick in practice?
 
Here is the barebone (a lot of improvement can be done on it):
Code:
<?php
if(isset($_SERVER['HTTP_REFERER'])){
   $reff = $_SERVER['HTTP_REFERER'];
   $pos = strpos($reff, 'google');
   if($pos !== false){
   //traffic came from google. Do soemthing with it
} else {
  // not google traffic, do something else...
}
} else{
  // referrer is not present. DO something else?
}

?>
Could someone elaborate a little bit how to apply this trick in practice?
 
Thanks, I kind of knew that already. What I don't understand is how to implement this so you can rank high? In my niche there is now one guy ranking first quite hard keyword with really basic 1 page website. And how he did it has something to do with his 302 redirect to frontpage of wikipedia (majestic SEO showed me that last time they crawled his website it was temporarily redirected to wikipedia). But how you should do that to try rank high? Just don't get it...
 
Back
Top