Page is a not externally linkable
enigma1 - 4:53 pm on Jun 5, 2009 (gmt 0)
Just use the $url in the header since you have the variable already.
<?php
$url =
"http://www.example.com/recommends/affiliate1234/";
header("Location: " . $url);
exit();
?>