Most of you probably already use this approach, but I figure I may as well right about it in case newer affiliates/webmasters don't know about it. It's so much web design in terms of interface a but rather in terms of file management/structure.
Everyone once in a while, there's always some poker room that decides to change their links. Then, it's a pain in the arse to go back and change every single text link and banner link you've ever created. The solution to this problem is simple. Create a redirect page in php format for each of your poker rooms. Then, when you setup your poker links and banners, link to the redirect page instead.
Eample: I have a folder called "Redirects" which contains a php file called "pokerstars.php". That file contains a redirect to the pokerstarts page, using my affiliate code.
On my site, I create a pokerstarts banner but modify the default linking text by removing the affiliate link and pointing to mysite/redirects/pokerstars.php. I repeat the process for all my pokerstars links. Should pokerstar ever decide to change their link format (like
UB and PA recently did), then I simply need to edit my pokerstars.php and every single pokerstars link is automatically updated. This takes 2 minutes instead of hours and hours of extremely boring work.
Just quick tip if anyone is interested.
Here is how the php file should be written. Just stick this in notepad, update the link and save as yourpokerroomname.php:
<?php
header("Location:
http://youraffiliatelinkgoeshere");
?>