How do you hide an affiliate link ?

Discussion in 'Affiliate Programs' started by Merk13, Feb 3, 2008.

  1. #1
    So lets say I sign up at a site as an affiliate and they generate one of those ugly long urls as my affiliate link, is there a way to simplify what the user has to retype to use my link ? A redirect of some sort or something ?
     
    Merk13, Feb 3, 2008 IP
  2. nobluff

    nobluff Well-Known Member

    Messages:
    639
    Likes Received:
    30
    Best Answers:
    0
    Trophy Points:
    100
    #2
    Using a php script or enclose the links in java.

    I prefer the php method.

    php method.

    1. Put php code in new directory.
    2. exclude directory in robots.txt
    3. make php page nofollow.


    php code example:

    <?PHP
    $m = $_GET['m'];
    switch ($m) {
    case "goo":
    $link = "www.google.com";
    break;
    case "evil":
    $link = "www.msn.com";
    break;

    }

    header("Location: $link"); // Jump to the hidden affiliate URL above

    exit();
    ?>

    then when you want to link to msn, you use the link

    <a h r e f="var/jump.php?m=evil" target="_blank">Evil MSN</a>

    obviously change the h r e f to its real form. var is the directory where your script is, jump.php the script.

    Thinks that it.
     
    nobluff, Feb 3, 2008 IP
  3. BlogSalesman

    BlogSalesman Well-Known Member

    Messages:
    1,687
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    100
    #3
    I just create a new php file with a relevant name.



    
    <?php
    
    	header("HTTP/1.1 301 Moved Permanently"); 
    	header("Location: http://URL.com");
            exit();
    
    ?>
    Code (markup):
     
    BlogSalesman, Feb 3, 2008 IP
  4. alanj878

    alanj878 Peon

    Messages:
    228
    Likes Received:
    2
    Best Answers:
    0
    Trophy Points:
    0
    #4
    you guys should put in lamen terms or refer a software product
     
    alanj878, Feb 3, 2008 IP
  5. Steven Truong

    Steven Truong Peon

    Messages:
    55
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #5
    ROFL....

    erm try using Tracking202.com, it's a PPC affiliate tracking software. Free to use. Will create redirect links that mask your affiliate links and you can use it for landing pages, your website, or for PPC, and it gives you lots of other features.
     
    Steven Truong, Feb 3, 2008 IP
  6. sarahk

    sarahk iTamer Staff

    Messages:
    28,950
    Likes Received:
    4,565
    Best Answers:
    124
    Trophy Points:
    665
    #6
    In laymen's terms you
    • create your affiliate link
    • create your .htaccess file
    • add the redirects as required
    • upload the .htaccess file

    then when your users request a page they seamlessly get sent to your affiliate site.

    You do however need a domain and hosting first.
     
    sarahk, Feb 3, 2008 IP
  7. Merk13

    Merk13 Peon

    Messages:
    814
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Whew thanks for slowing this down, those first 2 posts were all Greek to me :D

    This Tracking202 thing sounds like the idiot proof way that even I might not be able to screw up :D
     
    Merk13, Feb 3, 2008 IP
  8. sarahk

    sarahk iTamer Staff

    Messages:
    28,950
    Likes Received:
    4,565
    Best Answers:
    124
    Trophy Points:
    665
    #8
    None of it's that hard and by relying on a 3rd party you are risking losing your links without warning. Can you afford to?
     
    sarahk, Feb 3, 2008 IP
  9. nobluff

    nobluff Well-Known Member

    Messages:
    639
    Likes Received:
    30
    Best Answers:
    0
    Trophy Points:
    100
    #9
    Agree 100%, stay away from 3rd party.
     
    nobluff, Feb 3, 2008 IP
  10. Steven Truong

    Steven Truong Peon

    Messages:
    55
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #10
    There are plenty of servers and backup center to handle the load. Although it's just simple redirect request, Tracking202 offers more than just that. It provides other services too. If you were interested in those tracking services and stuff, it would be worthwhile to check out. But I do see where you guys are getting at.
     
    Steven Truong, Feb 4, 2008 IP
  11. turbosatan

    turbosatan Well-Known Member

    Messages:
    957
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    135
    #11
    i made a couple of posts on coffeeblack.co.uk about affiliate link cloaking. i found some other good resorces around it which i linked to aswell.
     
    turbosatan, Feb 4, 2008 IP
  12. MeetHere

    MeetHere Prominent Member

    Messages:
    15,399
    Likes Received:
    994
    Best Answers:
    0
    Trophy Points:
    330
    #12
    I use javascript codes for hiding :D
     
    MeetHere, Feb 4, 2008 IP
  13. BlogSalesman

    BlogSalesman Well-Known Member

    Messages:
    1,687
    Likes Received:
    19
    Best Answers:
    0
    Trophy Points:
    100
    #13
    Say your affiliate link goes to Amazon.com

    Create a file called Amazon.php
    Copy the code above into the file
    Change URL.com to your affiliate link
    Change the link on your webpage to point to your new file - Amazon.php

    DONE!

    Visitors think they are going to a page on your website, but instead they go to Amazon.
     
    BlogSalesman, Feb 4, 2008 IP