The Most Active and Friendliest
Affiliate Marketing Community Online!

“Propeller”/  Direct Affiliate

Looking For Back Button Redirect

TonyB

Active Member
Morning All,

I cant remember the names and I can't find my notes but....


Redirect off the back button. Landers are in Biz opp/Make money online niche. Traffic isnt huge on them at the moment, but as I scale, I don't want to be wasting any users.

Who can help? I think I have an account with Exoclick somewhere, but want to check here first as want to work with fellow fix'ers really.
 
Morning All,

I cant remember the names and I can't find my notes but....


Redirect off the back button. Landers are in Biz opp/Make money online niche. Traffic isnt huge on them at the moment, but as I scale, I don't want to be wasting any users.

Who can help? I think I have an account with Exoclick somewhere, but want to check here first as want to work with fellow fix'ers really.

Try ppcmode.com
 
PHP:
<?php
$javascript = <<<DOC
<script>
var ref = document.referrer;
var siteurl = "http://www.yoursite.com";//if you have www, then use www. http://www.yoursite.com
if (ref.indexOf(siteurl)!= -1){
}
else{
(function(window, location) {
    history.replaceState(null, document.title, location.pathname+"#!/auth");
    history.pushState(null, document.title, location.pathname);

    window.addEventListener("popstate", function() {
      if(location.hash === "#!/auth") {
        history.replaceState(null, document.title, location.pathname);
        setTimeout(function(){
          location.replace("http://www.yoursite.com/redirecturl/");
        },0);
      }
    }, false);
}(window, location));
}
 
</script>
DOC;

echo $javascript;
?>
 
MI
Back