Go Back   WarriorForum - Internet Marketing Forums > The Warrior Forum > Main Internet Marketing Discussion Forum
Register Blogs FAQ Social Groups CalendarHelp Desk

Reply
 
LinkBack Thread Tools
Old 11-06-2008, 01:36 PM   #1
Will Arnold
 
Join Date: Oct 2007
Location: London, UK
Posts: 33
Thanks: 1
Thanked 0 Times in 0 Posts
Default Do you have a preference for cloaking affiliate links? What is it, why and how do you do it?

OK - so this is the second part of my newbie questions. I put up a long post a few days ago with loads of these but it got ignored - too much to take on at once for most I'm sure. Sorry!

I have been reading about IM for years and am finally about to release two products (not 'make money') and find my practical web / IT skills are horribly lacking.

Please therefore, help me out on this one as well......

How do I best cloak affiliate links within the eBooks. I know how to make a phrase – such as ‘MySpace’ – read on the page of a pdf as an html link to somewhere specific – e.g. mybookaboutmyspace/orderpage - but how do I do that for lengthy and worth protecting affiliate links? Do I just do it the way I know in Word before turning it into a pdf or do I do more in the way of protection.

If you have a preference, can you explain how and why?

Many thanks.

Will
guruwill is offline   Reply With Quote
Old 11-06-2008, 01:41 PM   #2
Warrior Member
 
Join Date: Oct 2008
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Do you have a preference for cloaking affiliate links? What is it, why and how do you do it?

You make the href of the link in your PDF go to a page that you host. That page should have a non-spammy, generic sounding name and domain. Within that page, do a 301 redirect to your actual affiliate link using PHP. Hopefully your merchant will set a cookie so that your affiliate ID is not displayed on the browsers URL bar.

This should stop most casual users from seeing the affiliate link, but there's no way to ever truely hide it.

Let me know if that's not clear, and I'll see if I can explain better.
xanol is offline   Reply With Quote
Old 11-06-2008, 03:05 PM   #3
Godson of The Godfather
War Room Member
 
Jared Alberghini's Avatar
 
Join Date: Nov 2004
Location: The NorthEast Kingdom - Vermont, USA
Posts: 2,163
Blog Entries: 25
Thanks: 786
Thanked 1,065 Times in 441 Posts
Social Networking View Member's Myspace Profile  View Member's FaceBook Profile  View Member's Twitter Profile  View Member's YouTube Profile
Default Re: Do you have a preference for cloaking affiliate links? What is it, why and how do you do it?

Here's my favorite way:

AffiliateNicheMonster.com - Free & Simple Link Cloaker

1) Enter the title and web address (including the http:// prefix) of the target web page.

2) Click on the Generate Cloak HTML button to generate the cloaked web page code.

3) Click anywhere in the Cloaked HTML box to select all of the text.

4) Right-click on the selected text and select "Copy" (or press CTRL-C) to copy the text to the Clipboard.

5) Paste the code into a BLANK text file, save it as "mypage.html" (or whatever you want to call it).

6) Upload the file to your web server. You're ready to go!

- Jared


TelekineticMarketing.com helps you connect with other IM Entrepreneurs like never before.

Be FIRST To Join TM For FREE -> Private Mastermind Groups for IM Entrepreneurs


Jared Alberghini is offline   Reply With Quote
Old 11-06-2008, 03:09 PM   #4
Active Warrior
 
baumann93's Avatar
 
Join Date: Oct 2006
Location: CBtrends.com
Posts: 72
Thanks: 1
Thanked 2 Times in 2 Posts
Social Networking View Member's Twitter Profile 
Default Re: Do you have a preference for cloaking affiliate links? What is it, why and how do you do it?

My preference is to do .htaccess redirects. Very simple to implement.

baumann93 is offline   Reply With Quote
Old 11-06-2008, 04:04 PM   #5
HyperActive Warrior
War Room Member
 
Join Date: Feb 2004
Location: , , United Kingdom.
Posts: 451
Thanks: 21
Thanked 47 Times in 39 Posts
Default Re: Do you have a preference for cloaking affiliate links? What is it, why and how do you do it?

Quote:
Originally Posted by baumann93 View Post
My preference is to do .htaccess redirects. Very simple to implement.
Hi Baumann93,

Would it be very simple to explain?

Tony

tonyscott is offline   Reply With Quote
Old 11-06-2008, 04:27 PM   #6
Active Warrior
 
baumann93's Avatar
 
Join Date: Oct 2006
Location: CBtrends.com
Posts: 72
Thanks: 1
Thanked 2 Times in 2 Posts
Social Networking View Member's Twitter Profile 
Default Re: Do you have a preference for cloaking affiliate links? What is it, why and how do you do it?

Quote:
Originally Posted by tonyscott View Post
Hi Baumann93,

Would it be very simple to explain?

Tony
Sure, you need to have access to the .htaccess and then have something like this it it:


Options +FollowSymlinks -MultiViews
RewriteEngine on
RewriteRule ^ts/?$ http://www.somedomain.com/go.cgi?XXXXXX[NC,R=301,L]

this would allow you to use http://www.yourdomain.com/ts/ to send people to the link you are promoting. I usually do not send people directly to the aff links, I send them to the squeeze pages instead - grab their email address and then send them to the aff link.

baumann93 is offline   Reply With Quote
Old 11-06-2008, 04:35 PM   #7
Senior Warrior Member
War Room Member
 
Neil Morgan's Avatar
 
Join Date: Jun 2007
Location: Lanarkshire UK
Posts: 2,487
Thanks: 98
Thanked 314 Times in 223 Posts
Social Networking View Member's Twitter Profile 
Default Re: Do you have a preference for cloaking affiliate links? What is it, why and how do you do it?

I just do simple PHP redirects.

Silly example:

http://www.autoresponseplus.com/google

I create a directory on my site called 'google' and create a file in it called index.php that contains the following PHP code:

<?php
Header("Location: http://www.google.com");
exit;
?>

Job done.

Cheers,

Neil

Neil Morgan is offline   Reply With Quote
Old 11-06-2008, 04:38 PM   #8
Active Warrior
 
baumann93's Avatar
 
Join Date: Oct 2006
Location: CBtrends.com
Posts: 72
Thanks: 1
Thanked 2 Times in 2 Posts
Social Networking View Member's Twitter Profile 
Default Re: Do you have a preference for cloaking affiliate links? What is it, why and how do you do it?

Quote:
Originally Posted by Neil Morgan View Post
I just do simple PHP redirects.

Silly example:

Follow Up Autoresponder and Mailing List Software - AutoResponse Plus

I create a directory on my site called 'google' and create a file in it called index.php that contains the following PHP code:

<?php
Header("Location: http://www.google.com");
exit;
?>

Job done.

Cheers,

Neil

Don't you also need an .htaccess file in that directory that would make your index.php file a directory index page?

baumann93 is offline   Reply With Quote
Old 11-06-2008, 04:49 PM   #9
Warrior Member
 
Join Date: Oct 2008
Posts: 28
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Do you have a preference for cloaking affiliate links? What is it, why and how do you do it?

Quote:
Originally Posted by baumann93 View Post
Don't you also need an .htaccess file in that directory that would make your index.php file a directory index page?
Not necessarily, most hosting packages will configure apache to do this by default. But if you need it, it's:

DirectoryIndex index.php


You can also just put this in .htaccess to do the redirect:

Redirect 301 /somepage.html somesite.com

Arggg, can't post urls yet.
xanol is offline   Reply With Quote
Old 11-06-2008, 04:51 PM   #10
Active Warrior
 
baumann93's Avatar
 
Join Date: Oct 2006
Location: CBtrends.com
Posts: 72
Thanks: 1
Thanked 2 Times in 2 Posts
Social Networking View Member's Twitter Profile 
Default Re: Do you have a preference for cloaking affiliate links? What is it, why and how do you do it?

Quote:
Originally Posted by xanol View Post
Not necessarily, most hosting packages will configure apache to do this by default.
You are right, I forgot to configure this on my dedicated server... off to do it now.

baumann93 is offline   Reply With Quote
Old 11-06-2008, 04:57 PM   #11
That Girl
War Room Member
 
J Elizabeth Dize's Avatar
 
Join Date: Oct 2007
Location: , , .
Posts: 1,813
Blog Entries: 4
Thanks: 426
Thanked 286 Times in 153 Posts
Social Networking View Member's FaceBook Profile  View Member's Twitter Profile 
Contact Info
Send a message via Skype™ to J Elizabeth Dize
Default Re: Do you have a preference for cloaking affiliate links? What is it, why and how do you do it?

I LOVE Copywriter's Toolkit - CloakMedic Affiliate Link Cloaker It's all I use

J Elizabeth Dize is online now   Reply With Quote
Old 11-06-2008, 05:00 PM   #12
Senior Warrior Member
War Room Member
 
Neil Morgan's Avatar
 
Join Date: Jun 2007
Location: Lanarkshire UK
Posts: 2,487
Thanks: 98
Thanked 314 Times in 223 Posts
Social Networking View Member's Twitter Profile 
Default Re: Do you have a preference for cloaking affiliate links? What is it, why and how do you do it?

Quote:
Don't you also need an .htaccess file in that directory that would make your index.php file a directory index page?
Xanol beat me to it but many servers have this as a default, notably the ubiquitous CPanel.

Cheers,

Neil

Neil Morgan is offline   Reply With Quote
Old 11-07-2008, 03:30 AM   #13
Will Arnold
 
Join Date: Oct 2007
Location: London, UK
Posts: 33
Thanks: 1
Thanked 0 Times in 0 Posts
Default Re: Do you have a preference for cloaking affiliate links? What is it, why and how do you do it?

Well - that's my two main issues sorted now - thanks to all the help from you guys.

Planning to have two products launched and running by the end of November. Can't wait!

Will
guruwill is offline   Reply With Quote
Old 11-07-2008, 04:14 AM   #14
HyperActive Warrior
 
Join Date: Sep 2005
Location: , , Norway.
Posts: 312
Thanks: 29
Thanked 9 Times in 9 Posts
Default Re: Do you have a preference for cloaking affiliate links? What is it, why and how do you do it?

Having a link that looks something like Your Page.com or Your Page.com is recommended simply because it looks lot more appealing than the standard clickbank and other affiliate urls.

You can achieve this by creating a folder called likes or recommends or something else on your website, and then create the folder with the name of the ebook, product, membership site or service, and lastly create a html page called index.html that has this code in between the "Having a link that looks something like Your Page.com or Your Page.com is recommended and you can achieve this by creating a folder called likes or recommends or something else on your website, and then create the folder with the name of the ebook, product, membership site or service.

Lastly create a html page called index.html that has this code in between the add < before meta and > after the last "
Code:
<meta http-equiv="refresh" content="0; url=http://www.reccomendedebookormembershipsite.com">

Ragnar T. M.
For a limited time you can: Rent My Creative Touch.
The Squeeze Page Writing Tips, Tricks And Proven Techniques You Need To Master Squeeze Pages!
Teaching Writing Blog
ragnartm is offline   Reply With Quote
Old 01-15-2009, 04:30 AM   #15
Active Warrior
War Room Member
 
Join Date: Dec 2008
Location: Manchester UK
Posts: 92
Thanks: 12
Thanked 23 Times in 4 Posts
Social Networking View Member's Twitter Profile 
Default Re: Do you have a preference for cloaking affiliate links? What is it, why and how do you do it?

Thanks Jared I've implemented yours and it's working a treat.

Last edited by AdamLCasey; 01-15-2009 at 04:31 AM. Reason: spelling mistake
AdamLCasey is offline   Reply With Quote
Old 01-15-2009, 09:23 AM   #16
Warrior Member
 
Join Date: Jan 2009
Posts: 1
Thanks: 0
Thanked 0 Times in 0 Posts
Default Re: Do you have a preference for cloaking affiliate links? What is it, why and how do you do it?

Pardon my newbie question, but I want to run banner ads (on my site) that are provided by ad networks, like LinkShare. The banner ad has its own code including the offer ID and affiliate ID and the target URL goes to the advertiser's site.

How exactly can I cloak the code for the link in the banner ad?

Thank you,
Ron
RonSolo is offline   Reply With Quote
Reply

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

Tags
affiliate, cloak, cloaker, cloaking, links, preference

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 01:14 AM.