metalcolin
Newbie
- Oct 1, 2008
- 30
- 69
Here is a simple way to hide your real traffic source and show your CPA a fake referrer. I am going to assume you already know how to implement double meta refresh to blank your traffic source, if not please see http://www.blackhatworld.com/blackhat-seo/black-hat-seo-tools/20750-double-meta-refresh-redirects.html
Ok you know how to make your referrer blank which is great but some (or most) CPA's want to know how you get your traffic, if you don't your aff manager might give you some shit if you bring in serious money. Plus I hate to have to SLOW DOWN on how much I milk an offer just bc I get traffic from a source they don't like.
A very simple way of faking your referrer is to set up a selective page redirect using simple javascript on a genuine landing page. Here is the code:
This is how you do it, you set up your basic double meta to point to your landing page and configure your javascript to redirect the traffic coming from your 2nd redirects ONLY (important). For example, in the 'YOUR_REFERRER.com' you put in the FULL url of your 2nd meta refresh which will only redirect the traffic that comes from that source and it will leave the referrer as your landing page for your CPA network to see (which is what you want).
When someone from the CPA Network comes to check out your landing page they will NOT be redirected and everything looks perfectly legit
Some reputation points or thanks would be appreciated....
BTW, what are the rep points good for anyway? .. Serious question, im new here so i don't know.
Ok you know how to make your referrer blank which is great but some (or most) CPA's want to know how you get your traffic, if you don't your aff manager might give you some shit if you bring in serious money. Plus I hate to have to SLOW DOWN on how much I milk an offer just bc I get traffic from a source they don't like.
A very simple way of faking your referrer is to set up a selective page redirect using simple javascript on a genuine landing page. Here is the code:
HTML:
<script language=Javascript>
var ref;
ref=document.referrer;
if (ref.replace("YOUR_REFERRER.com","") != ref)
{
window.location.href='http://www.Genuinely .com';
}
//=====Code By: metalcolin=====
if (ref.replace("YOUR_REFERRER_2.com","") != ref)
{
window.location.href='http://YOUR_CPA_OFFER.com';
}
//===== metalcolin ======
if (ref.replace("http://YOUR_REFERRER_3.com","") != ref)
{
window.location.href='http://www.YOUR_CPA_OFFER.com';
}
//=====
</script>
This is how you do it, you set up your basic double meta to point to your landing page and configure your javascript to redirect the traffic coming from your 2nd redirects ONLY (important). For example, in the 'YOUR_REFERRER.com' you put in the FULL url of your 2nd meta refresh which will only redirect the traffic that comes from that source and it will leave the referrer as your landing page for your CPA network to see (which is what you want).
When someone from the CPA Network comes to check out your landing page they will NOT be redirected and everything looks perfectly legit
Some reputation points or thanks would be appreciated....
BTW, what are the rep points good for anyway? .. Serious question, im new here so i don't know.