View Single Post
  #6 (permalink)  
Old 09-01-2006, 04:15 PM
Clickbank Hotshot's Avatar
Clickbank Hotshot Clickbank Hotshot is offline
5 Star Member
 
Join Date: Sep 2006
Location: Pasadena CA
Posts: 35
Default a simple PHP redirect also does the trick

here is the method i use for one-off affiliate links. create a little php file, say innocuous.php, which looks something like the following :
PHP Code:
<?php

    $redirect_url 
'http://some/url/with/an/affiliate/id/';

    
header"Location: {$redirect_url}" );
?>
then just direct people to innocuous.php and they will end up on the appropriate sales page. this is a lot easier than writing HTML files, i think.

of course, the file has to go into a directory that can handle PHP scripts, but most document roots handle PHP without any problem.
__________________
Stephen Carter
Creator of ClickBank Hotshots
Developer of The Perfect Customer Review Application
Reply With Quote