+ Reply to Thread
Page 1 of 4 1 2 3 4 LastLast
Results 1 to 15 of 53

 

Thread: Hiding Affiliate Link URL's?

  1. #1
    Merchant User

    Status
    Offline
    Join Date
    Apr 2006
    Location
    Cheshire
    Posts
    1,440
    Thanks
    15
    Thanked 18 Times in 17 Posts


    I've seen on some affiliate sites they are able to hide the affiliate link. Does anyone know how this is done?

  2. #2
    Registered User

    Status
    Offline
    Join Date
    Apr 2007
    Posts
    348
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Careful now mate.

    This is technically known as cloaking although i personally see no harm in hiding your affiliate links to make them look more user friendly.

    It's when you show one link and redirect somewhere else completely that is very naughty.

    Stu
    uberhype.co.uk - professional search engine marketing.

  3. #3
    Matthew Wood's Avatar
    Founder of affiliates4u, MD of Existem

    Status
    Offline
    Join Date
    May 2003
    Location
    Bristol, UK
    Posts
    2,979
    Thanks
    139
    Thanked 173 Times in 70 Posts
    Depends how you do it, our techies mask the affiliate link using php.

    This stops Google and other search engines from seeing a page full of affiliate links when they crawl - The SEO value depends how sceptical you are - but I think its good practice.

    Users can also be fickle, if they don't see the expected URL when they hover over the hyperlink they could bolt - granted a very small minority but if your'e tight with conversions every little helps.

    This was discussed at length here

    http://www.affiliates4u.com/forums/s...ad.php?t=40923
    Read my personal blog @ Woody
    Follow me on twitter @ matthewwood

  4. #4
    Keith's Avatar
    Moderator

    Status
    Offline
    Join Date
    Aug 2003
    Location
    Richmond North Yorkshire
    Posts
    2,540
    Thanks
    172
    Thanked 119 Times in 83 Posts
    I did a short article about cloaking affiliate links on my blog a while back Redirecting or Cloaking Affiliate Links I'm not saying its perfect or comprehensive but it will give you an idea of some the different methods of redirection
    Keith ~ My Blog general ramblings. Internet Marketing Blogs UK all the blogs together in one place (pm for inclusion)

  5. #5
    Registered User

    Status
    Offline
    Join Date
    Apr 2006
    Posts
    736
    Thanks
    4
    Thanked 7 Times in 7 Posts
    Are you sure that is considered as cloaking Stu?

    Loads of sites do it and I'm sure that I have even seen Matt Cutts recommending it as a way of stopping an advertiser benefiting from the inbound link for rankings.

    It is also a good way of tracking where your visitors are going.. ie, you can send your visitors to a redirect script that puts some details into a datbase including the site that you are sending gthe visitor too.. that way you can compare clicks to merchant sites vs what the networks say.

  6. #6
    Registered User

    Status
    Offline
    Join Date
    Apr 2006
    Posts
    736
    Thanks
    4
    Thanked 7 Times in 7 Posts
    Are you sure that is considered as cloaking Stu?

    Loads of sites do it and I'm sure that I have even seen Matt Cutts recommending it as a way of stopping an advertiser benefiting from the inbound link for rankings.

    It is also a good way of tracking where your visitors are going.. ie, you can send your visitors to a redirect script that puts some details into a datbase including the site that you are sending gthe visitor too.. that way you can compare clicks to merchant sites vs what the networks say.

  7. #7
    The New 'Arfur Daley

    Status
    Online
    Join Date
    Mar 2004
    Location
    Kent UK
    Posts
    3,581
    Thanks
    119
    Thanked 122 Times in 87 Posts
    Do a quick search on this forum. There are php and javascript versions posted on this site.
    Flambi Media Limited - USA/UK/EU Affiliate Management Expertise

  8. #8
    Registered User

    Status
    Offline
    Join Date
    Feb 2006
    Location
    Gillingham
    Posts
    510
    Thanks
    0
    Thanked 4 Times in 1 Post
    If you have php available on your server here is piece of code that does the job:

    PHP Code:
    <?php
    $link
    =array(
    1=>"http://network.com?affid=65675&merch=87897&pid=7hjkhjk",
    2=>"http://network.com?affid=65675&merch=87897&pid=76786",
    3=>"http://network.com?affid=65675&merch=87897&pid=7uyiu86",
    4=>"http://network.com?affid=65675&merch=87897&pid=7yfgfh6"
    );
    $url=$link[$_GET['product']];
    header("Location: ".$url);
    ?>
    Save the script as link.php and change your links to something like link.php?product=1

    The javascript alternatives do not work in Firefox or IE7.
    They came for my 404 and I said nothing

  9. #9
    Registered User

    Status
    Offline
    Join Date
    Apr 2006
    Posts
    736
    Thanks
    4
    Thanked 7 Times in 7 Posts
    Are you sure that is considered as cloaking Stu?

    Loads of sites do it and I'm sure that I have even seen Matt Cutts recommending it as a way of stopping an advertiser benefiting from the inbound link for rankings.

    It is also a good way of tracking where your visitors are going.. ie, you can send your visitors to a redirect script that puts some details into a datbase including the site that you are sending gthe visitor too.. that way you can compare clicks to merchant sites vs what the networks say.

  10. #10
    Registered User

    Status
    Offline
    Join Date
    Apr 2006
    Posts
    736
    Thanks
    4
    Thanked 7 Times in 7 Posts
    sorry for the triple posts! bloody PC's!

  11. #11
    Registered User

    Status
    Offline
    Join Date
    Apr 2007
    Posts
    348
    Thanks
    0
    Thanked 0 Times in 0 Posts
    i think technically yes but with so much aff fraud going on, i tend to agree with the rest of you.

    As i said before, i think it's the context in which it's used that really matters.

    I'd be interested in seeing the Matt Cutts post. will check the blog.

    stu
    uberhype.co.uk - professional search engine marketing.

  12. #12
    SEO Consultant

    Status
    Offline
    Join Date
    Apr 2007
    Location
    London
    Posts
    261
    Thanks
    1
    Thanked 22 Times in 11 Posts
    Hi !

    Try this...

    http://www.stevedawson.com/article0006.php

    you own me a beer
    James G. Evans - SEO Consultant - Learn SEO, online, at your office, anywhere! from £50/hour. Expect the best! Get exclusive access to my know-how! Learn SEO Now, limited availability.

  13. #13
    hobbsy's Avatar
    Registered User

    Status
    Offline
    Join Date
    Aug 2005
    Location
    Manchester
    Posts
    392
    Thanks
    17
    Thanked 12 Times in 11 Posts
    Quote Originally Posted by Stellar View Post
    Are you sure that is considered as cloaking Stu?

    Loads of sites do it and I'm sure that I have even seen Matt Cutts recommending it as a way of stopping an advertiser benefiting from the inbound link for rankings.

    It is also a good way of tracking where your visitors are going.. ie, you can send your visitors to a redirect script that puts some details into a datbase including the site that you are sending gthe visitor too.. that way you can compare clicks to merchant sites vs what the networks say.
    Hi Stellar -- do you have a tutorial on how to record the clicks into a MySQL database?

    I like the look of Donk's php code he posted - how can I combine with a database?

    Quote Originally Posted by Donk
    If you have php available on your server here is piece of code that does the job:

    PHP Code:
    <?php
    $link=array(
    1=>"http://network.com?affid=65675&merch=87897&pid=7hjkhjk",
    2=>"http://network.com?affid=65675&merch=87897&pid=76786",
    3=>"http://network.com?affid=65675&merch=87897&pid=7uyiu86",
    4=>"http://network.com?affid=65675&merch=87897&pid=7yfgfh6"
    );
    $url=$link[$_GET['product']];
    header("Location: ".$url);
    ?>
    Save the script as link.php and change your links to something like link.php?product=1

    The javascript alternatives do not work in Firefox or IE7.

  14. #14
    Member

    Status
    Offline
    Join Date
    Apr 2007
    Posts
    56
    Thanks
    0
    Thanked 0 Times in 0 Posts
    Second that. It is cloaking.

    Quote Originally Posted by stu foster View Post
    i think technically yes but with so much aff fraud going on, i tend to agree with the rest of you.

    As i said before, i think it's the context in which it's used that really matters.

    I'd be interested in seeing the Matt Cutts post. will check the blog.

    stu
    Cheers,

    Dirvan

  15. #15
    Registered User

    Status
    Offline
    Join Date
    Oct 2004
    Posts
    4
    Thanks
    0
    Thanked 0 Times in 0 Posts
    I use that PHP method and it is working for my small site. Another advantage is that you can keep all your outbound links in one file, which I find makes them alot easier to manage.

+ Reply to Thread
Page 1 of 4 1 2 3 4 LastLast


Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Similar Threads

  1. Euroffice April Affiliate Newsletter & Bonus
    By vince@euroffice in forum TradeDoubler
    Replies: 0
    Last Post: 10-04-07, 06:57 PM
  2. Euroffice April Affiliate Newsletter & Bonus
    By vince@euroffice in forum Paid On Results
    Replies: 0
    Last Post: 10-04-07, 06:56 PM
  3. Affiliate HealthCheck launch
    By affiliatehealth in forum Affiliate Marketing Lounge
    Replies: 0
    Last Post: 01-03-07, 03:18 PM
  4. Affiliate Window's GoZing affiliate link goes to Ciao instead
    By Azam.net in forum Affiliate Window & buy.at
    Replies: 11
    Last Post: 09-09-05, 11:03 AM

Bookmarks

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
To Top

Content Relevant URLs by vBSEO 3.5.0 RC2