War Room

Go Back   WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum

Featured Warrior Special Offer...
"Members Of The *War Room* Discover Secrets To Immediate Success!"
Reply
 
LinkBack Thread Tools
Old 09-24-2009, 02:39 AM   #1
Active Warrior
War Room Member
 
MSGeek's Avatar
 
Join Date: Jul 2009
Posts: 79
Blog Entries: 1
Thanks: 9
Thanked 9 Times in 6 Posts
Default Amazon affiliate links cloaking technique - enjoy

Many Amazon affiliates use links and ads automatically generated by the Amazon Associates site. However, there were reports that occasionally they are generated incorrectly and don't result in the sales properly accounted for. The word on the street is that the correct Amazon affiliate link has a form http://www.amazon.com/dp/ASIN/?tag=YOURAFFILIATEID. ASIN is the Amazon Serial Index (ISBN-10 for the books), and YOURAFFILIATEID is, well, your affiliate ID. I verified that type of links and they indeed work.

Of course, such simple structure of an affiliate link is widely open to so called stealing affiliate sales, when your affiliate ID is removed or replaced. Hence, link cloaking becomes even more important. However, considering that most Amazon affiliate sites promotes multiple products, making individual redirects for all of them is complicated.

Instead you will be able to use the links looking like:

http://YourSite/asin/ASIN

by creating "asin" folder on your server and placing just two files into it. The files are .htaccess (if you run under Apache server as most people do) and index.php. You have to have module rewrite enabled and php available to use this.

.htaccess file:
>>>> CUT HERE >>>>
RewriteEngine on

# Rewrite URLs of the form 'x' to the form 'index.php?asin=x'.
RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_FILENAME} !-d
RewriteRule ^(.*)$ /asin/index.php?asin=$1 [L]
<<<<<<<<<<<<<<<<

index.php:
>>>> CUT HERE >>>>
<?php
$amazonId = "httpwwwgalien-20"; // <--- put your Amazon ID here

if (!empty($_GET['asin'])) {
$link = "http://www.amazon.com/dp/" . $_GET['asin'] . "/?tag=" . $amazonId;
}
else {
$link = "http://YourSite"; // <-- put your site address here
}

header("Location: " . $link);
exit();
?>
<<<<<<<<<<<<<<<<

-- How To Make Your Site Pandemic by Creating a Viral Report in Under 1 Hour and Giving It Away for Free
-- Viral Report SneezeMachine Makes others to Spread Your Viral Report Around
-- Action is essential, Brain is not optional.
MSGeek is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 09-24-2009, 06:02 AM   #2
Active Warrior
 
Join Date: Dec 2008
Posts: 35
Thanks: 0
Thanked 1 Time in 1 Post
Default Re: Amazon affiliate links cloaking technique - enjoy

Can you help me with cloaking the amazon affilate links on my site "www.bestcanondigitalcamera.net" (including WP amazon plugin)?

I would be happy on any feedback.

Best regards from Germany
Manfred
p307ig is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Old 09-24-2009, 10:45 PM   #3
Active Warrior
War Room Member
 
MSGeek's Avatar
 
Join Date: Jul 2009
Posts: 79
Blog Entries: 1
Thanks: 9
Thanked 9 Times in 6 Posts
Default Re: Amazon affiliate links cloaking technique - enjoy

I don't use WP amazon plugin. What's the problem? Your site and links seems to be all right, everything should work. By the way, good site.

About cloaking, the code snippets from Amazon contain links like
All you have to do is deploy two files above and change these links to

Of course, check that such links work after creating asin folder and putting .htaccess and index.php there. And considering how many of those links you have, it may be time consuming. But that's pretty much it.

About Amazon plugin, if you can give URL from where you loaded it, I can briefly check and see what needs to be done there. But no promises, a lot of WP plugins are written in horrible style.

-- How To Make Your Site Pandemic by Creating a Viral Report in Under 1 Hour and Giving It Away for Free
-- Viral Report SneezeMachine Makes others to Spread Your Viral Report Around
-- Action is essential, Brain is not optional.

Last edited by MSGeek; 09-24-2009 at 10:46 PM. Reason: Link was converted
MSGeek is offline  
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

  WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum

Tags
affiliate, amazon, cloaking, enjoy, links, technique

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off



All times are GMT -6. The time now is 05:26 PM.