SEO in links with tracking ID...

Discussion in 'Search Engine Optimization' started by THT, Jul 30, 2005.

  1. #1
    I need to track votes into mysite.

    At the moment, a user goes to http:// site.com/index.php?ID=222

    now, i think google has a problem with this.
    I need to track links into my site (HTTP_REFERER isnt applicable) and still make sure i get maximum weight from the links on their sites....

    Whats the best way to do this?
     
    THT, Jul 30, 2005 IP
  2. minstrel

    minstrel Illustrious Member

    Messages:
    15,082
    Likes Received:
    1,243
    Best Answers:
    0
    Trophy Points:
    480
    #2
    If you do what forums do and require a login for members, then don't assign the ID until someone logs in, Googlebot (as a "Guest") won't see the ID#.
     
    minstrel, Jul 31, 2005 IP
  3. THT

    THT Peon

    Messages:
    686
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #3
    unfortunately, it cant be like that....

    Its liek a voting system and the voting buttons are on other peoples site.

    Ordinary users need to vote without signing in etc...
     
    THT, Jul 31, 2005 IP
  4. THT

    THT Peon

    Messages:
    686
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Anybody, no, dust?

    I guess www. site.com/ID?99 is better than www. site.com/in.php?ID=99 right?
     
    THT, Aug 1, 2005 IP
  5. dave487

    dave487 Peon

    Messages:
    701
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Why not link to site.com/track.php?ID=99 , have the track.php script install a cookie or log a hit in the database or whatever to track the referrer.

    After you have done this you can use a php redirect at the end of track.php to send the user to site.com
     
    dave487, Aug 3, 2005 IP
  6. THT

    THT Peon

    Messages:
    686
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #6
    Thats what it does now... but is there not a better SEO way to do it to get full potential of the link...
     
    THT, Aug 3, 2005 IP
  7. dave487

    dave487 Peon

    Messages:
    701
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    0
    #7
    My understanding is that a redirect is fine as far as SE's are concerned.
     
    dave487, Aug 3, 2005 IP
  8. THT

    THT Peon

    Messages:
    686
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #8
    using header("locationBLHA:"); ?
     
    THT, Aug 3, 2005 IP
  9. dave487

    dave487 Peon

    Messages:
    701
    Likes Received:
    20
    Best Answers:
    0
    Trophy Points:
    0
    #9
    I use:

    header("HTTP/1.1 301 Moved Permanently"); 
    header("Location: http://www.site.co.uk/"); 
    exit();
    PHP:
     
    dave487, Aug 4, 2005 IP
  10. THT

    THT Peon

    Messages:
    686
    Likes Received:
    8
    Best Answers:
    0
    Trophy Points:
    0
    #10
    so would that work the other weay for out going links?
     
    THT, Aug 4, 2005 IP