How can I Redirect traffic and Fake referrer

Joined
Mar 28, 2013
Messages
9
Reaction score
0
I bought some traffic from a traffic exchange known as HitLeap. From there I can actually pick my Traffic Source. But The deal is I don't want all the traffic I buy to go to domain_com_index.php .

I would like to know how I could make a php script to redirect people to various places on my website. So not all the traffic is going to the same url.

So I send traffic to domain_com_redirector.php and it forwards the traffic to domain_com_books OR domain_com_games. ECT.
I need to also spoof the referrer in the redirect script.

I know I could likely code the redirector script. But it's the fake refer thing I won't know how to do.

Anyhelp on where I can start to do this? I read some posts here But I very fastly got lost.
 
quick and dirty is php rand function with an array on redirector.php which lists the pages you want to be redirected too but the referrer will always be source->redirector.php->random page as far as spoofing that (if that is what you requested) someone else can help you with that because I cannot think of a way atm :)
 
Im trying to get into php, the possibilities are really endless
 
Yes I actually already have a set up like that

But I would like to know how I could redirect people with a fake referer such as google or facebook. ECT.
 
Sorry for the bump but could anyone take another look at my post and offer some help?
 
Most simplest form of redirecting randomly to various sites would be to make file index.php and put this inside

Code:
<?
$arrUrl = array('http://www.hollywoodreporter.com/','http://www.deadline.com/','http://www.finance.yahoo.com/');
$key = array_rand($arrUrl);
header("location: {$arrUrl[$key]}");
?>

replace links inside with your links.

For fake referer, there is few techniques that involve 3rd party sites, and some basic tricks with sites that are doing redirects like GET parameter, for example tumblr , voila.fr , url.com but at the end if you didn't get idea how all that works maybe is better to take service on http://fakereferer.com/

also if is not a problem for your campaigns and Aff Manager you can blank referers or make ready blanked referer links here http://blankreferer.com/
 
That fake referrer stuff could be used for good as well. As in creating your own affiliate name/source?! :-)
 
Ref is not detected by Google (unless you have GAnalytics on target site). To get rid of referrer altogether - switch to https and redirect user to http - bah referrer is gone.
 
I do not agree!

Ref is not detected by Google (unless you have GAnalytics on target site). To get rid of referrer altogether - switch to https and redirect user to http - bah referrer is gone.
 
OK so I did next

Made something like - /index2.php

in that file I added 18 adf . ly links and php random so it is something like this

random 1-18

if 1
header(first link)

if2
header(second link)
.
.
.

then submit /index2.php to hitleap and earn about 200 clicks - 10 seconds per each...
but the problem is - those clicks does not display on statistic page on adf ly

Does anyone know what is going on here?
 
Back
Top