Here is the redirect. I've placed it in another url called www.aos.com All I did was put in the affiliate link. Do I need to put html and body tags around the php file?
<?php
//Tracking202 Pro PHP Redirect Code
//Cloaked Version - uses the official Tracking202 Cloaking API: http://go.tracking202.com/?url=
//this is your affiliate url, we've appended the subid to the end with the tracking202pro subid
$affiliateUrl = 'http://www.lynxtrack.com/afclick.php?o=9978&b=mrf1xb8m&p=5492&l=1&s=' . $_COOKIE['t202proSubid'];
//this line is extremely important, this encodes the string so it will work with our cloaked redirect api
$affiliateUrl = urlencode($affiliateUrl);
//now we will redirect the traffic through our api
$redirectUrl = 'http://go.tracking202.com/?url=' . $affiliateUrl;
//this is our custom outbound php redirect
echo " <html>
<head>
<meta http-equiv='refresh' content='1; url=$redirectUrl'>
</head>
<body>
<script src='//sp1.tracking202.com/trk/zoywa21643men4q?t202s={$_COOKIE['t202proSubid']}'></script>
<script type='text/javascript'>window.location='$redirectUrl';</script>
</body>
</html>";
?>