what is alternative traffic source to buyhitscheap that can be worked when you do double meta refresh or accepted by cpa network?
if bhc doesn't work I don't see why any other ones would work?
IT must work somewhat, just some hits are lost, I am running a test right now
Is there any reason why this combination of pages wont accomplish the same thing ?
Page 1
<title>URL1 here</title>
<meta name="robots" content="noindex,nofollow">
<script>window.location="http://www.URL2.com";</script>
<meta http-equiv="refresh" content="1; url=http://www.URL2.com">
</head>
Page 2
<title>URL2 here</title>
<meta name="robots" content="noindex,nofollow">
<script>window.location="http://www.affiliate line here.com";</script>
<meta http-equiv="refresh" content="1; url=http://www.affiliate link here.com">
Ok can anyone help the noob here ...
This is what I have ...
Page 1
<body>
<?php
{
echo "<meta http-equiv=\"refresh\" content=\"0;url=URL2\">";
}
?>
</body>
Then Page 2 here ...
<body>
<?php
$referer = $_SERVER['HTTP_REFERER'];
if($referer == "")
{
echo "<meta http-equiv=\"refresh\" content=\"0;url=http://www.affiliatesitehere.com\">";
}
?>
</body>
Saved as Meta1.php and Meta2.php and uploaded to my site. All I get is page upload errors ??? Can someone help me with what I am missing ?
you dont need the body tags.
<?php
$referer = $_SERVER['HTTP_REFERER'];
if($referer == "http://www.mysite/my.php\")
{
echo "<meta http-equiv=\"refresh\" content=\"0;url=http://myaffiliateid.com\">";
}
?>
So basically this is how it would go.
a href link to URL1 which sends referer
URL1
URL2PHP:<?php echo "<meta http-equiv=\"refresh\" content=\"0;url=URL2\">"; ?>
PHP:<?php $referer = $_SERVER['HTTP_REFERER']; if($referer == "") { echo "<meta http-equiv=\"refresh\" content=\"0;url=http://www.youraffiliatelink.com\">"; } ?>
Pasting the code I have in a .php page with no HTML.
Was this directed to my question?