This is my first site so just wondering if there is anything I should do before it goes up. Im using one of the google money offers with a flog.
Im usin this type of link
http://mysite.com/out.php?url=http://trackerurl.com/offer with this php script as the out.php to blank the referrer
Not sure if this is a good way to blank the referrer but was wondering is there a way to check since Im on OSX? It seems like it works the first time the link is clicked and after that it starts showing the referrer and Opera seems to loop over and over without reaching the actual offer.
Is there anything else I should do or check before I put this site up?
Im usin this type of link
http://mysite.com/out.php?url=http://trackerurl.com/offer with this php script as the out.php to blank the referrer
PHP:
<?php
$url = $_GET['url'];
if(!empty($_SERVER['HTTP_REFERER'])){
echo '<meta http-equiv="refresh" content="0;'.$_SERVER['PHP_SELF'].'?url='.$url.'">';
}else{
header('Location: '.$url, TRUE, 301);
}
?>
Is there anything else I should do or check before I put this site up?