Forum Moderators: open

Message Too Old, No Replies

Do affiliate link still work when a page redirects from meta refresh

         

stella_kl

2:56 pm on Oct 5, 2005 (gmt 0)



basically does the code below do the same job as the customer clicking on a link?

<META HTTP-EQUIV=Refresh CONTENT="0; URL=http://www.merchantwebsite.com?aff=mysite">

Just wanna make sure they know where the customer has come from!

cuce

4:28 pm on Oct 5, 2005 (gmt 0)

10+ Year Member



yes. But...

meta redirects are somewhat unreliable.

I'd use a php redirect.

<?php
header("location: http://www.example.com/index.php?myaffid-or-whatever");
exit;
?>

stella_kl

4:47 pm on Oct 5, 2005 (gmt 0)



How would they be unrealiable? They always seem to work when I click the links?