Right now I have 2 landing pages in rotation, and decided to throw in a direct link to the offer to recoup some costs while testing and also see if the DL converts better.
What I did was I added the direct link like this:
$landingpage[1] = 'lander1.php?' . $query;
$landingpage[2] = 'lander2.php?' . $query;
$landingpage[3] = 'directlink.php?' . $query;
I created a 3rd landing page called direct link in the 202 setup process and on the directlink.php page, it's basically an html file renamed to a php, so it has all the code of a basic html page.
Everything seems to be tracking fine, but I couldn't use a php redirect. Something kept going wrong with having 2 "headers" in the code, so I had to use a meta html redirect.
Is this the most efficient way to do this or is there an easier way?
I don't want to be slowing down my redirects on my VPS if there's a more efficient way.
What I did was I added the direct link like this:
$landingpage[1] = 'lander1.php?' . $query;
$landingpage[2] = 'lander2.php?' . $query;
$landingpage[3] = 'directlink.php?' . $query;
I created a 3rd landing page called direct link in the 202 setup process and on the directlink.php page, it's basically an html file renamed to a php, so it has all the code of a basic html page.
Everything seems to be tracking fine, but I couldn't use a php redirect. Something kept going wrong with having 2 "headers" in the code, so I had to use a meta html redirect.
Is this the most efficient way to do this or is there an easier way?
I don't want to be slowing down my redirects on my VPS if there's a more efficient way.