how do u get google to find you after a re-direct and duplicate content?

Discussion in 'Search Engine Optimization' started by DharmaSeo, Apr 27, 2007.

  1. #1
    this site after a redirect has lost all its sites indexed. Im not sure if thats the reason or the reason is that its a subdomain on pricegrabber which is duplicate content

    http://pcworldcanada.pgpartner.ca/
     
    DharmaSeo, Apr 27, 2007 IP
  2. coolguy27

    coolguy27 Banned

    Messages:
    485
    Likes Received:
    11
    Best Answers:
    0
    Trophy Points:
    0
    #2
    coolguy27, Apr 28, 2007 IP
  3. DharmaSeo

    DharmaSeo Peon

    Messages:
    1,819
    Likes Received:
    16
    Best Answers:
    0
    Trophy Points:
    0
    #3
    thanks a ot, i think the page layout and links are duplicate and the site really has no content (text)
     
    DharmaSeo, Apr 28, 2007 IP
  4. Corwin

    Corwin Well-Known Member

    Messages:
    2,438
    Likes Received:
    107
    Best Answers:
    0
    Trophy Points:
    195
    #4
    If you change your URLs, and if the new URL is duplicate content, it is absolutely vital that you send the proper response codes to the client. If you don't, you risk losing your search engine rankings and credit for inbound links.

    Below is the code that will do this for you if you are using Active Server Pages:

    ' Tell the client browser or spider the page has moved for good
    Response.Status="301 Moved Permanently"
     
    ' Tell the client browser/spider where the page has moved to, where
    ' sNewPage = a string representing the new page.
    ' sNewPage must be the full URL starting with "http://"
    Response.AddHeader "Location", sNewPage
     
    'rem Move to the new page.
    Response.Redirect sNewPage
    HTML:
    This is necessary so that your inbound search links to the old page, will all carry over to your ranking for the new page. The code must stay permanantly on your site.
     
    Corwin, Apr 28, 2007 IP
  5. DharmaSeo

    DharmaSeo Peon

    Messages:
    1,819
    Likes Received:
    16
    Best Answers:
    0
    Trophy Points:
    0
    #5
    thanks alot, i will further into this! :)
     
    DharmaSeo, Apr 28, 2007 IP
  6. sweetfunny

    sweetfunny Banned

    Messages:
    5,743
    Likes Received:
    467
    Best Answers:
    0
    Trophy Points:
    0
    #6
    What Corwin said is spot on, you must 301 re-direct the old to the new and Google will update it's index with the new URLs without incuring a duplicate content penalty.

    How long Google takes to update it's index with the new URL's depends on your page strength.
     
    sweetfunny, Apr 28, 2007 IP
  7. Corwin

    Corwin Well-Known Member

    Messages:
    2,438
    Likes Received:
    107
    Best Answers:
    0
    Trophy Points:
    195
    #7
    I ran an experiment on this back in February on a site that gets 80K+ visitors/month and is spidered by Google almost daily.

    Without the above code, after two weeks the new duplicate content page still was not indexed and the old page was still in the Google index, even after being Google spidered about 10 times.

    With the above code sending the 301 Redirect, the new duplicate content page was indexed after the second Google spider visit (after two days).
     
    Corwin, Apr 29, 2007 IP