Transfer Page Rank to New Domain?

Discussion in 'Google' started by aeromit, Sep 25, 2007.

  1. #1
    Hi,

    I have a news web site which is visited by 10 000 to 15 000 every day. It is well established one. The domain has PR 5. I decided to to rebrand it and just changed the domain name with a new one. It has PR 0.

    I know that Google didn't update the PR for a few months and to be honest I don't care for the PR ratio too much because I have real visitors I need.

    Anyway... My question is would I expect the new domain to get the same PR as the previous one?

    Thanks
     
    aeromit, Sep 25, 2007 IP
    zebno likes this.
  2. Dwaighty

    Dwaighty Peon

    Messages:
    358
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #2
    If you did a 301 redirect, which would tell the search engines that your website has permanently moved from the previous domain to the new one, then you won't loose any pagerank.

    Even if you don't get many visitors from search engines (though I doubt it at a pagerank of 5), it is advisable to do a 301.
     
    Dwaighty, Sep 25, 2007 IP
  3. zebno

    zebno Well-Known Member

    Messages:
    936
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    138
    #3
    dont waste time on pagerank if u have real visitors...pr worth only if your visitors came for search engines...
     
    zebno, Sep 25, 2007 IP
  4. Hersheys

    Hersheys Peon

    Messages:
    2,591
    Likes Received:
    23
    Best Answers:
    0
    Trophy Points:
    0
    #4
    I thought page rank is based on the number quality of links. How come that page rank can be moved to new domain? Since, your backlinks is on the old domain.

    Please explain it to me, is it possible to pass pr from old domain to new domain by using 301 redirect?
     
    Hersheys, Sep 25, 2007 IP
  5. Dwaighty

    Dwaighty Peon

    Messages:
    358
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #5
    Yes, by doing a 301 redirect you will preserve your search engine rankings and google pr. Here's how it is done in php:

    
    <?php
    header( "HTTP/1.1 301 Moved Permanently" );
    header( "Location: http://www.newdomainname.com" );
    ?> 
    
    Code (markup):
    or using apache's mod_rewrite, something like this, if I'm not mistaken:
    
    redirect 301 / http://www.newdomainname.com/
    
    Code (markup):
    Google it to find more about 301 redirects.
     
    Dwaighty, Sep 25, 2007 IP
  6. SupaSharp

    SupaSharp Well-Known Member

    Messages:
    1,865
    Likes Received:
    74
    Best Answers:
    0
    Trophy Points:
    100
    #6
    just get backlinks, backlinks, backlinks
     
    SupaSharp, Sep 25, 2007 IP
  7. dynamike

    dynamike Peon

    Messages:
    1,191
    Likes Received:
    33
    Best Answers:
    0
    Trophy Points:
    0
    #7
    How long should it take to see the PR on the new site? I did the exact same thing with my motorcycle news site. It was a PR4 before the mew branding and now the new site is a PR1. It's been months since the switch.
     
    dynamike, Sep 25, 2007 IP
  8. ad1

    ad1 Peon

    Messages:
    238
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    301 redirect will do the job...it should transfer the page rank as well.
     
    ad1, Sep 25, 2007 IP
  9. Pixelrage

    Pixelrage Peon

    Messages:
    5,083
    Likes Received:
    128
    Best Answers:
    0
    Trophy Points:
    0
    #9
    do the 301 redirect as mentioned, it is going to take awhile for it to "resolve", it would be a shame to lose a PR5...
     
    Pixelrage, Sep 25, 2007 IP
  10. trichnosis

    trichnosis Prominent Member

    Messages:
    13,785
    Likes Received:
    333
    Best Answers:
    0
    Trophy Points:
    300
    #10
    301 redirect is the best solution for you.

    just search google:)
     
    trichnosis, Sep 26, 2007 IP
  11. Dwaighty

    Dwaighty Peon

    Messages:
    358
    Likes Received:
    10
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Dynamike, what is your website and the one you moved from and how did you do the redirect? Can you show us the code? Normally, you should have a pr of 4 to the new one as well, maybe you didn't do the redirect right, or you somehow got penalized.
     
    Dwaighty, Sep 26, 2007 IP
  12. Sutocu

    Sutocu Active Member

    Messages:
    938
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    60
    #12
    Until the next PR update, at least.
     
    Sutocu, Sep 26, 2007 IP
  13. akhilesh243

    akhilesh243 Active Member

    Messages:
    574
    Likes Received:
    4
    Best Answers:
    0
    Trophy Points:
    60
    #13
    <?php
    header( "HTTP/1.1 301 Moved Permanently" );
    header( "Location: http://www.newdomainname.com" );
    ?>
    i thionk this is better then others
     
    akhilesh243, Sep 26, 2007 IP
  14. story97

    story97 Peon

    Messages:
    181
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #14
    much faster to use htaccess than to use a redirect in php
     
    story97, Sep 26, 2007 IP
  15. Cowboytf

    Cowboytf Peon

    Messages:
    69
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #15
    Will this work for blogspot as well? I ask because, assuming PR stays, mine is a predicted 4 or 5 but I wanted to move it to a domain I already own.
     
    Cowboytf, Sep 26, 2007 IP
  16. gordano

    gordano Active Member

    Messages:
    843
    Likes Received:
    59
    Best Answers:
    0
    Trophy Points:
    70
    #16
    Interesting thread ... so what would happen if you did a 301 redirect from a pr5 site to antoher that also has pr5 ... would the overall pr increase?
     
    gordano, Sep 26, 2007 IP
  17. dynamike

    dynamike Peon

    Messages:
    1,191
    Likes Received:
    33
    Best Answers:
    0
    Trophy Points:
    0
    #17
    dynamike, Sep 26, 2007 IP
  18. Sutocu

    Sutocu Active Member

    Messages:
    938
    Likes Received:
    24
    Best Answers:
    0
    Trophy Points:
    60
    #18
    For a Blogger/BlogSpot blog the process is a bit more complicated, but you can do it via a Blogger custom domain, and get a 301 redirect. It even works, if you want to move from Blogger to WordPress later on.
     
    Sutocu, Sep 26, 2007 IP
  19. bomberman

    bomberman Peon

    Messages:
    1,082
    Likes Received:
    9
    Best Answers:
    0
    Trophy Points:
    0
    #19
    bomberman, Sep 26, 2007 IP