How do you mask aff. urls ?

Discussion in 'Affiliate Programs' started by JohnMally, Sep 16, 2008.

  1. #1
    Hi,

    How is it possible to mask aff. urls ? from your visitors ?

    Thanks
     
    JohnMally, Sep 16, 2008 IP
  2. Lastbutnotleast

    Lastbutnotleast Peon

    Messages:
    2,612
    Likes Received:
    105
    Best Answers:
    0
    Trophy Points:
    0
    #2
    You can use frames but be sure that sales are correctly tracked
     
    Lastbutnotleast, Sep 16, 2008 IP
  3. swollenpickles

    swollenpickles Active Member

    Messages:
    1,271
    Likes Received:
    23
    Best Answers:
    0
    Trophy Points:
    80
    #3
    php redirects work. depends what you want to do. if you're using ebay, check out phpBay Pro and it does it all for you.
     
    swollenpickles, Sep 16, 2008 IP
  4. Gallito

    Gallito Peon

    Messages:
    1,939
    Likes Received:
    35
    Best Answers:
    0
    Trophy Points:
    0
    #4
    You can do it with a meta redirect page:

    
    <html>
    <head>
    <meta name = "robots" content = "noindex,nofollow">
    <meta http-equiv='refresh' content='0; url=http://affiliateURLgoeshere.com'>
    </head>
    </html>
    
    Code (markup):
     
    Gallito, Sep 16, 2008 IP
  5. Lastbutnotleast

    Lastbutnotleast Peon

    Messages:
    2,612
    Likes Received:
    105
    Best Answers:
    0
    Trophy Points:
    0
    #5
    This is a redirect process - fine ;)

    But this does not hide affiliate urls
     
    Lastbutnotleast, Sep 16, 2008 IP
  6. Gallito

    Gallito Peon

    Messages:
    1,939
    Likes Received:
    35
    Best Answers:
    0
    Trophy Points:
    0
    #6
    It does if you format your redirects correctly, for instance it could display as http://www.yourdomain.com/redirect/www.topdomainofaffiliateprogram.com in the status bar, and then people typically don't think that it is an affiliate link, just a regular redirect.
     
    Gallito, Sep 16, 2008 IP
  7. dpsubi1

    dpsubi1 Notable Member

    Messages:
    9,318
    Likes Received:
    420
    Best Answers:
    0
    Trophy Points:
    280
    #7
    if you use wordpress there is a plugin which does good job. ;)
     
    dpsubi1, Sep 16, 2008 IP
  8. swollenpickles

    swollenpickles Active Member

    Messages:
    1,271
    Likes Received:
    23
    Best Answers:
    0
    Trophy Points:
    80
    #8
    swollenpickles, Sep 16, 2008 IP
  9. blichev

    blichev Peon

    Messages:
    1,342
    Likes Received:
    30
    Best Answers:
    0
    Trophy Points:
    0
    #9
    You can use .htaccess redirect in your hosting account - it works and is reliable.
     
    blichev, Sep 17, 2008 IP
  10. Scar

    Scar Peon

    Messages:
    439
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #10
    I just posted this the other day...but I'll post it again!

    There is a lot of speculation that having a lot of affiliate links on your page may hurt your SE rank, so it's a good idea to mask your links. I prefer using subdomains with php redirects.

    For instance, let's say you have a dating banner ad, but you want its link to be masked. You could create a subdomain called "dating" on your existing site (http://dating.yoursite.com) and then upload a php file in the subdomain directory with the following code:

    <?
    Header( "HTTP/1.1 301 Moved Permanently" );
    
    Header( "Location: http://www.YOURAFFILIATELINK.com" );
    ?>
    
    PHP:
    Then you simply link the dating banner to http://dating.yoursite.com.

    That way your link looks clean, and there is no affiliate link to be found on your site. Even if the SE's are looking for php redirects (which I don't think they care about just yet), they will see it on your subdomain, which is technically considered a separate site, so it still won't affect your main site's rank.
     
    Scar, Sep 17, 2008 IP