Pagerank Strange

Discussion in 'Websites' started by Gt1, Feb 24, 2006.

  1. Tam

    Tam Peon

    Messages:
    89
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #21
    I agree with the absolute linking suggestions, but other issues may be at large and determining these may depend on your adeptness at trawling through/'deciphering' your scripting and htaccess files.

    I was a bit bewildered to see that the OP mentions the alive directory as his site and yet two other posters mention it in their signature, are you guys all working on the same site?
     
    Tam, Feb 27, 2006 IP
  2. mad4

    mad4 Peon

    Messages:
    6,986
    Likes Received:
    493
    Best Answers:
    0
    Trophy Points:
    0
    #22
    I think the key issue is that we know google has bugs with variations in urls and using the absolute url kills these bugs.

    Even if it doesn't help it can't hurt can it?

    to avoid this I use absolute urls and have the following in htaccess:
    
    Options +FollowSymLinks
    RewriteEngine on
    RewriteCond %{THE_REQUEST} ^[A-Z]{3,9}\ /index\.php3\ HTTP/ 
    RewriteRule ^index\.php3$ http://www.domain.co.uk [R=301,L] 
    RewriteCond %{HTTP_HOST} ^domain.co.uk
    RewriteRule (.*) http://www.domain.co.uk/$1 [R=301,L]
    
    Code (markup):
    mystik - I am 90% sure that its this issue thats causing your problems, I was posting the other day about google not being able to handle the trailing slash on Matt Cutts blog and similar issues can confuse google quite a lot.
     
    mad4, Feb 27, 2006 IP
  3. mystikmedia

    mystikmedia Jedi Master

    Messages:
    5,564
    Likes Received:
    498
    Best Answers:
    0
    Trophy Points:
    270
    #23
    It's my site. Others also include it in their signature.
     
    mystikmedia, Feb 27, 2006 IP
  4. mystikmedia

    mystikmedia Jedi Master

    Messages:
    5,564
    Likes Received:
    498
    Best Answers:
    0
    Trophy Points:
    270
    #24
    Thanks much for this suggestion. I will give it a try.
     
    mystikmedia, Feb 27, 2006 IP
  5. Tam

    Tam Peon

    Messages:
    89
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #25
    Sorry, I seem to have mistaken it with the OP which, reading back, was incorrect. Beg your pardon :(
     
    Tam, Feb 27, 2006 IP
  6. NetMidWest

    NetMidWest Peon

    Messages:
    1,677
    Likes Received:
    151
    Best Answers:
    0
    Trophy Points:
    0
    #26
    I use this:
     
    NetMidWest, Feb 27, 2006 IP