Pagerank divided solution

Discussion in 'Google' started by fountainofyout@aol.com, Nov 27, 2006.

  1. #1
    It was advised that I bring this topic to this forum. Here's the quote:

    "The domain.com and domain.com/index.htm both have a PR of 5 which usually means there is some sort of redirect. I'm not sure how to get to the bottom of it you should post a thread in the DP google forum. It could even be that google has given 2 pages a PR5 when it should have been just 1 page with a higher PR."

    The domain is 21stcenturyhgh dot com. There is no redirect of any kind. I'd like to fix this problem so I can max my PR. Should I go through the whole website and change the domain.com/index.htm links to domain.com (what a hassle!) or is there some easier solution?

    Thanks for the help.

    Michael
     
    fountainofyout@aol.com, Nov 27, 2006 IP
  2. thegypsy

    thegypsy Peon

    Messages:
    1,348
    Likes Received:
    109
    Best Answers:
    0
    Trophy Points:
    0
    #2
    Micheal.. while you could do the whole htaccess mod rewrite route... but I really wouldn't worry about it

    If U insist though


    As for PR.. well I wouldn't worry about that either; http://forums.digitalpoint.com/showthread.php?t=186449
     
    thegypsy, Nov 27, 2006 IP
    Mong likes this.
  3. Mong

    Mong ↓↘→ horsePower

    Messages:
    4,789
    Likes Received:
    734
    Best Answers:
    0
    Trophy Points:
    235
    #3
    Usually PR is considered for main domain name not actual webpage.

    For example.
    DP forums is PR7. {consider DC propagation}
    http://digpagerank.com/index.php?url=http://forums.digitalpoint.com&dc=17

    but if you check PR of /index.php then it is PR3 only. [huge difference]

    http://digpagerank.com/index.php?url=http://forums.digitalpoint.com/index.php&dc=17

    Though it can be considered as PR divide.

    But you can redirect /index.htm to main domain {if possible} to get maximum advantage (which is usually very low) :)
     
    Mong, Nov 27, 2006 IP
  4. fountainofyout@aol.com

    fountainofyout@aol.com Member

    Messages:
    30
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #4
    Berserker, the code above, exactly where do I put it? (Sorry, I'm a newbie)

    Michael
     
    fountainofyout@aol.com, Nov 27, 2006 IP
  5. thegypsy

    thegypsy Peon

    Messages:
    1,348
    Likes Received:
    109
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Sorry

    What type of server are U on?
     
    thegypsy, Nov 27, 2006 IP
  6. fountainofyout@aol.com

    fountainofyout@aol.com Member

    Messages:
    30
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #6
    Type of server? npsis is my host. How can I find the info you want?

    Michael
     
    fountainofyout@aol.com, Nov 27, 2006 IP
  7. thegypsy

    thegypsy Peon

    Messages:
    1,348
    Likes Received:
    109
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Is it a Windows server? Or a Unix/Linux ?

    Have the link to your hosting plan page?
     
    thegypsy, Nov 27, 2006 IP
  8. banless

    banless Peon

    Messages:
    1,745
    Likes Received:
    217
    Best Answers:
    0
    Trophy Points:
    0
    #8
    I would not use the mode rewrite. Just do a find and place in your source code then upload your entire site it will take about 10 seconds.
     
    banless, Nov 27, 2006 IP
  9. fountainofyout@aol.com

    fountainofyout@aol.com Member

    Messages:
    30
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    41
    #9
    I checked to make sure and it's running Linux.

    Michael
     
    fountainofyout@aol.com, Nov 27, 2006 IP
  10. thegypsy

    thegypsy Peon

    Messages:
    1,348
    Likes Received:
    109
    Best Answers:
    0
    Trophy Points:
    0
    #10
    Ok then try this

    Open up a TEXT editor and put this (adapt to suit your situation)

    RewriteEngine On
    # redirect all non-www traffic
    RewriteCond %{HTTP_HOST} ^yoursite.com
    RewriteRule (.*) http://www.yoursite.com/$1 [R=301,L]

    # Redirect aliases of home page to the root website
    RewriteCond %{THE_REQUEST} ^.*\/index\.html?
    RewriteRule ^(.*)index\.html?$ http://www.yoursite.com/$1 [R=301,L]

    NOTE; replacing the domain name and index page name (htm,html,php etc..)

    Then save this as htaccess.txt

    Now upload that to the ROOT directory of your site and rename to .htaccess

    Let me know if you need some more help :0)
     
    thegypsy, Nov 27, 2006 IP