Hey guys, how can I hide/change affiliate links in JOOMLA such as www,pokerstars.com/123456 and change to to wwww.bestpokersiteever.com/go/pokerstars ? Many thanks!!!
The two are different domains you need to decide only one or a subdomain to the one you have selected.
I see what you mean ... if you want to hide your affiliate link then why not use JavaScript? <script type="text/javascript"> function pokerStars() { window.location.href = "www.pokerstars.com/123456" }; </script> <a href="#" onClick="pokerStars()">PokerStars</a> Code (markup): OR if you want to achieve what you mentioned in your post, then create a directory called "Go", and then create a file within that directory called "pokerstars.php" and add the following inside: <?php Header("Location: www.pokerstars.com/123456"); ?> Code (markup): then just use www.bestpokersiteever.com/go/pokerstars.php ... if you want to go to that page without the .php at the end then you'll going to need to use your .htaccess file ... Hope that helps, Lynn.
With the example above it assumes that search engines can not read javascript. I am also assuming the OP wants to "hide" their affiliate link from the search engines...