Hide The reffer for my offline traffic

katkoute

Regular Member
Joined
Feb 22, 2012
Messages
252
Reaction score
119
i have a question if i have a domain name and i use a landing page with my cpa offer in there like click here to ..... can my cpa network know where my traffic coming from cuz i m runnin an offline compaign and i want to hide my source of traffic any tips will be appreciated
 
so my domain name ---> landing page ---> bit.ly ---> Cpa Offer u think that would work ??
 
Use CPA-redirector or double meta refresh. Use the search bar to get more info.
 
so my domain name ---> landing page ---> bit.ly ---> Cpa Offer u think that would work ??

The refferer would be bit.ly, so they cant really check where it comes from, except to go look trough bit.ly :P
 
delete pls
 
Last edited:
Ripped source:
index.php
Code:
<?php echo "<meta http-equiv=\"refresh\" content=\"0;url=second.php\">"; ?>

second.php
Code:
<?php  // Open our links file $sites = array_map("trim", file("links.txt"));  // Grab a random URL $redirect = $sites[array_rand($sites)];  $referer = $_SERVER['HTTP_REFERER']; if($referer == "")  // Redirect to our Random URL echo "<meta http-equiv=\"refresh\"content=\"0;url=http://".$redirect."\">";     else { // Referrer is not blank send traffic to our homepage echo "<meta http-equiv=\"refresh\" content=\"0;url=http://www.google.com\">";   } ?>
links.txt
Code:
Your URL Here (one url per line, URL rotates)
With source :P
 
Last edited:
Back
Top