I’ve just read a great post from Rockfuse
It is about the ethics of affiliate link cloaking. This is when you use some method which disguises a referral id of yours to a product you are an affiliate of, from which you earn a commission if someone buys via your link. I have often wondered how much better I’d go at selling things by doing this.
My main concern was not whether it is ethical or not though, but whether by cloaking the link, the referral information will go through. Apparently it does.
Frankly, if I see something that I want to buy and it has an obvious referral id in the link, I will go back to the site after without that referral link, unless I like the site and it offers me something. So if I do that, so do others.
The products I advertise on my web site do not have cloaked links, but if you visit my affiliate page, you will see down the bottom a LinkProtection software link. This is an exe file, but there is no spyware. This application will encrypt your referral link.
For blogs one can’t use the php method as far as I can see. So for blogs one could use either snipurl or tinyurl. I’ve noticed tiny url being used a lot these days, not always for referral link cloaking but for long titles in blogs. Both of these sites can be dragged to your browser toolbar for easy access.
Now the PHP method for web sites.
You can use a jump php script which you will find here
You can use a redirect in a .htaccess file
or use this script:
<?php
$url=’http://affiliatelinkhere’;
header(“Location:$url”);
exit()”;
?>
Save as something.php
Upload to your server.
To link to your product that you are an affiliate of
< a href=”http://www.domain.com/something.php“affiliate name</a>