New Posts
Live Radio
Welcome guest, is this your first visit?
  • Login:
Redbet.com Affiliate Program
+ Reply to Thread
Page 1 of 2 1 2 LastLast
Results 1 to 10 of 13
  1. #1
    Senior Member
    My Status
     

    Add as a friend
    Join Date
    Nov 2008
    Location
    Denver CO
    Posts
    989
    Feedback Score
    31 (100%)

    Default Is this the correct way to hide aff links?

    Hello all,

    I wanted to make sure I'm doing this correctly. The goal is to hide my affiliate links so they look cleaner. Here's what I've got in my htaccess:

    # Temporary redirects for affiliate links
    Redirect 302 /go/fulltilt http://www.fulltiltpoker.com/XMyzXmyYxZzynLtX
    Redirect 302 /download/fulltilt http://www.fulltiltpoker.com/download/key=xZxyYzXzzyZ
    # End of affiliate redirects

    I just made up those affiliate links so don't worry about the actual link.. I just want to make sure I have set the redirect correctly. It works when I click my links but am not getting sign ups where I think I should be on one site.


    EDIT - I think I figured this out on my own. Another affiliate told me about a wordpress plugin that handles affiliate redirects automatically. You can find it at http://urbangiraffe.com/plugins/redirection/

    This is a very hand plugin if you use WP. It will make your affiliate links look clean and it can track how many hits each link gets.
    Last edited by wjb316; 12-11-2009 at 11:18 PM.
    Even if you fall on your face, you're still moving forward.

  2. #2
    Member
    My Status
     

    Add as a friend
    Join Date
    Feb 2009
    Location
    England
    Posts
    37
    Feedback Score
    0

    Default

    I don't think there is one canonical 'correct' way to do it - all the ways you mention in your post work and are used. As long as it tracks and you like the look of the links I am sure it is fine. Personally I use php files and keep them in a folder, thus my affiliate links look like: mydomain.co.uk/go/asite.php

  3. #3
    Senior Member
    My Status
     

    Add as a friend
    Join Date
    Jun 2009
    Location
    USA
    Posts
    2,902
    Feedback Score
    15 (100%)

    Default

    Just out of curiosity, is this just a personal preference thing? I am pretty sure like no one would not click something because the link had an affiliate extension. This is if the person viewing the site even looks to see where the link is going. ?

  4. #4
    #!/usr/bin/mikebrad
    My Status
     

    Add as a friend
    Join Date
    Nov 2008
    Location
    USA
    Posts
    697
    Feedback Score
    8 (100%)

    Default

    Personally, I look at links before clicking on them, but that's just me. I'm not sure if this is meant to hide from users more than it is from search engines.

    I do cloak my aff links because it helps me track them and allows for more control / ease of use, plus the added benefit of blocking the whole redirect directory in a robots.txt file. For me, the biggest benefit is when it comes time to change affiliate links, though. It's much easier to change one link in an .htaccess file or php redirect script than it is to search through an entire site trying to find all of the affiliate links.

  5. #5
    Writer-Photoshop Newbie
    My Status
     

    Add as a friend
    Join Date
    Feb 2009
    Location
    Vancouver, Wa
    Posts
    639
    Blog Entries
    1
    Feedback Score
    21 (100%)

    Default

    Quote Originally Posted by Mike View Post
    Personally, I look at links before clicking on them, but that's just me. I'm not sure if this is meant to hide from users more than it is from search engines.

    I do cloak my aff links because it helps me track them and allows for more control / ease of use, plus the added benefit of blocking the whole redirect directory in a robots.txt file. For me, the biggest benefit is when it comes time to change affiliate links, though. It's much easier to change one link in an .htaccess file or php redirect script than it is to search through an entire site trying to find all of the affiliate links.
    Hey Mike, Is there a good tutorial of this that you know of or is it pretty easy to explain?

    I'm not so much concerend about hiding the aff links but being able to change them within one file as opposed to searching them definitely sounds like a plus.

  6. #6
    #!/usr/bin/mikebrad
    My Status
     

    Add as a friend
    Join Date
    Nov 2008
    Location
    USA
    Posts
    697
    Feedback Score
    8 (100%)

    Default

    I prefer using the folder method versus the .htaccess method. If you are interested in using the .htaccess method, just add the OPs code into your .htaccess file at the root of your directory (changing the affiliate links, of course).

    Here is the php method:

    1. Create a folder named "go" using whatever ftp program you like
    2. Inside of the "go" folder, create a folder for each room you promote
    3. Inside of each room's folder, upload a file named index.php with the following code:

    PHP Code:
    <?
    Header
    "HTTP/1.1 301 Moved Permanently" ); 
    Header"Location: AFFILIATE LINK HERE" ); 
    ?>
    So, using Aced.com as an example, instead of linking with the affiliate link, use xww.yourdomain.com/go/aced/ and your traffic will redirect to aced.com via your aff link.

    4. Just to keep good housekeeping, I no follow whenever I link to these folders and I also put the following code in my robots.txt

    User-agent: *
    Disallow: /go/

  7. #7
    Senior Member
    My Status
     

    Add as a friend
    Join Date
    Oct 2009
    Location
    Uruguay
    Posts
    215
    Feedback Score
    0

    Default

    Quote Originally Posted by RayUK View Post
    I don't think there is one canonical 'correct' way to do it - all the ways you mention in your post work and are used. As long as it tracks and you like the look of the links I am sure it is fine. Personally I use php files and keep them in a folder, thus my affiliate links look like: mydomain.co.uk/go/asite.php
    I do something similar. I have created a CGI program that encapsulates all links by using and index into a database. # 1, it hides the content of the links, # 2, it allows me to do some internal tracking and storing of information in my database, and # 3, it externalizes all of my affiliate links into my database (should I need to change the link, I only have to update a row in a database, as opposed to changing my HTML code).

  8. #8
    Tin Foil Hatter
    My Status
     

    Add as a friend
    Join Date
    Nov 2008
    Location
    USA
    Posts
    948
    Blog Entries
    5
    Feedback Score
    8 (100%)

    Default

    Quote Originally Posted by jdwanchalk View Post
    Just out of curiosity, is this just a personal preference thing? I am pretty sure like no one would not click something because the link had an affiliate extension. This is if the person viewing the site even looks to see where the link is going. ?
    while i don't have any empirical testing, i think a certain % of web users will absolutely look to see where the link is going before they click on it and many of them will not click on a link that looks like an affiliate link. I have seen people roll over links, check the destination and end up opening a new browser and typing in the domain name directly instead of clicking a link. What percentage of users this is, I don't know (does anyone??).

    I've used php re-directs and the redirection plugin and both work. The plugin tracks your clicks too so if you don't have that solution already then i'd go with the plugin.
    Promote the only Home Based Poker Dealing School on the net via Clickbank with these banners.
    Poker Leaderboard - manage & display points standings easily on your website.

  9. #9
    MJ
    MJ is offline
    Armchair Quarterback
    My Status
     

    Add as a friend
    Join Date
    Nov 2008
    Location
    USA
    Posts
    4,845
    Blog Entries
    17
    Feedback Score
    43 (100%)

    Default

    Clicktale test in the making I'd say.

  10. #10
    Writer-Photoshop Newbie
    My Status
     

    Add as a friend
    Join Date
    Feb 2009
    Location
    Vancouver, Wa
    Posts
    639
    Blog Entries
    1
    Feedback Score
    21 (100%)

    Default

    Thanks Mike for explaining that.

    Now, when you no-follow the folders, are you doing that within the text - wherever the link happens to be?

    And if so, does that no-follow the aff link as well?


 

Thread Information

Users Browsing this Thread

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

     

Similar Threads

  1. How do I hide pages with the robot text?
    By pokerworx in forum Poker SEO Forum
    Replies: 0
    Last Post: 07-22-2009, 05:57 PM
  2. How To Hide Referring URL?
    By CoolDog in forum General Poker Affiliate Forum
    Replies: 8
    Last Post: 04-28-2009, 05:54 PM
  3. Correct CHmod setting for main index?
    By Holis in forum Wordpress - Web Design - Coding - Technical
    Replies: 1
    Last Post: 01-27-2009, 09:07 PM
  4. What is correct?
    By Newjabber in forum Poker SEO Forum
    Replies: 4
    Last Post: 01-16-2009, 09:06 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
Powered by vBulletin® Version 4.1.5
Copyright © 2012 vBulletin Solutions, Inc. All rights reserved.
SEO by vBSEO 3.6.0
Affiliate Program Consultant