Best Way To Redirect Without Loosing SEO?

Discussion in 'Search Engine Optimization' started by jvfconsulting, Oct 8, 2008.

  1. #1
    Currently we have a site www.brentwoodbusinesscenter.com and when you click on the "Blog" button in the top header it takes you to our worpress blog located at www.industrialspaceinbrentwood.com

    Since the link to the blog is in the top navigation I would like to use the url www.brentwoodbusinesscenter.com/blog.php and have it redirect to www.industrialspaceinbrentwood.com

    There are several ways I thought about doing this, but which one would be the most beneficial for SEO purposes?

    1. I could create the page /blog.php and put a simple redirect to www.industrialspaceinbrentwood.com

    2. I could edit the .htaccess file to redirect traffic using that file.

    3. Just leave it as is, not including the path in the sitemap
     
    jvfconsulting, Oct 8, 2008 IP
  2. SearchBliss

    SearchBliss Well-Known Member

    Messages:
    1,899
    Likes Received:
    70
    Best Answers:
    2
    Trophy Points:
    195
    Digital Goods:
    1
    #2
    Use a 301 redirect (.htaccess).
     
    SearchBliss, Oct 8, 2008 IP
  3. jvfconsulting

    jvfconsulting Active Member

    Messages:
    1,089
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    90
    #3
    jvfconsulting, Oct 8, 2008 IP
  4. jvfconsulting

    jvfconsulting Active Member

    Messages:
    1,089
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    90
    #4
    jvfconsulting, Oct 8, 2008 IP
  5. SearchBliss

    SearchBliss Well-Known Member

    Messages:
    1,899
    Likes Received:
    70
    Best Answers:
    2
    Trophy Points:
    195
    Digital Goods:
    1
    #5
    It will be fine.
     
    SearchBliss, Oct 9, 2008 IP
  6. wsitehelp

    wsitehelp Guest

    Messages:
    288
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #6
    use redirect
     
    wsitehelp, Oct 9, 2008 IP
  7. Rblakney

    Rblakney Peon

    Messages:
    223
    Likes Received:
    1
    Best Answers:
    0
    Trophy Points:
    0
    #7
    Google recommends a 301 redirect just like SearchBliss recommends.
     
    Rblakney, Oct 9, 2008 IP
  8. vnttn

    vnttn Guest

    Messages:
    358
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #8
    OK, confirm! You should use 301 redirect, you will not lose your rank!
     
    vnttn, Oct 9, 2008 IP
  9. flatroxs

    flatroxs Banned

    Messages:
    396
    Likes Received:
    6
    Best Answers:
    0
    Trophy Points:
    0
    #9
    I Think This is The best options Use a 301 redirect
     
    flatroxs, Oct 9, 2008 IP
  10. vickyseo

    vickyseo Banned

    Messages:
    712
    Likes Received:
    7
    Best Answers:
    0
    Trophy Points:
    0
    #10
    301 is best way as SEO point of view.
     
    vickyseo, Oct 9, 2008 IP
  11. MattUK

    MattUK Notable Member

    Messages:
    6,950
    Likes Received:
    377
    Best Answers:
    0
    Trophy Points:
    275
    #11
    301 redirect every time. Make sure you redirect pages to similar pages rather than to the homepage
     
    MattUK, Oct 10, 2008 IP
  12. morph07

    morph07 Peon

    Messages:
    194
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #12
    I will also recommend to use redirect:)
     
    morph07, Oct 10, 2008 IP
  13. SearchBliss

    SearchBliss Well-Known Member

    Messages:
    1,899
    Likes Received:
    70
    Best Answers:
    2
    Trophy Points:
    195
    Digital Goods:
    1
    #13
    Yes...it tells the SE's that the file has moved perminately to a new location on the server, then SE's in time update their index with the new file location.
     
    SearchBliss, Oct 10, 2008 IP
  14. JohnnyLocke

    JohnnyLocke Guest

    Messages:
    29
    Likes Received:
    0
    Best Answers:
    0
    Trophy Points:
    0
    #14
    I would think htacess would do the job.
     
    JohnnyLocke, Oct 10, 2008 IP
  15. jvfconsulting

    jvfconsulting Active Member

    Messages:
    1,089
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    90
    #15
    I just implemented some changes. Will this 301 redirect work?

    In the directory brentwoodbusinesscenter.com/blog i setup an index.php page that reads...

    <?php
    header("HTTP/1.1 301 Moved Permanently" );
    header("Location: http://www.officespacebrentwood.com/");
    exit();
    ?>
     
    jvfconsulting, Oct 10, 2008 IP
  16. jvfconsulting

    jvfconsulting Active Member

    Messages:
    1,089
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    90
    #16
    OK, here is another redirect question...
    My friends website does not allow .htaccess files since its a windows server. What would be the best way to redirect traffic going from peterbrucephotography/blog to peterbrucephoto.com ?

    Currently I'm using the following technique. In the directory peterbrucephotography.com/blog i setup an index.php page that reads...

    <?php
    header("HTTP/1.1 301 Moved Permanently" );
    header("Location: http://www.peterbrucephoto.com/");
    exit();
    ?>
     
    jvfconsulting, Oct 10, 2008 IP
  17. jvfconsulting

    jvfconsulting Active Member

    Messages:
    1,089
    Likes Received:
    12
    Best Answers:
    0
    Trophy Points:
    90
    #17
    Seems like the method above is working fine. I just submitted all the sitemaps in my google webmaster tools account and they were all approved with no errors.
     
    jvfconsulting, Oct 10, 2008 IP