how to stop SE's listing both url's ?

Collapse
This topic is closed.
X
X
 
  • Time
  • Show
Clear All
new posts
  • Chris

    how to stop SE's listing both url's ?

    Hello
    Am really worried, so wondered if anyone could help.

    My site outgrew itself recently so we've had to make changes to the url
    structure.
    I have some important url's like this: www.mysite.com/bluewidgets/, Yet now
    with the expansion of the site and url structure change (had to be done) we
    also have urls like: www.mysite.com/country1/bluewidgets/ which serves up
    identical content to the above first url.

    Is this bad? There is no way around it, cause if i dump my old url (i have
    50 important ones kept) I will have to get around 6,000 webmasters to change
    my link url on their pages, which i dont want to have to do.
    My programmer says it wont be a problem with google etc, but i'm worried. I
    rely on this site for my income.
    Is it possible to stop google from crawling and most importantly listing the
    50 new url's in the new format? So it sticks with the old ones? Everything
    is done with php/mod rewrite rules and so its not simple for me to know.
    Or is it possible to have 50 redirects from the new url's to the old ones?
    Will that stop google listing both?

    How do i get round this? The problem is, because the site is very much
    database driven, i have no way of making it use the old format url's for the
    50 in question. I hope this all makes sense. Thanks for any help,

    Chris


  • jrf[no]

    #2
    Re: how to stop SE's listing both url's ?

    Chris wrote:
    [color=blue]
    > Hello
    > Am really worried, so wondered if anyone could help.
    >
    > My site outgrew itself recently so we've had to make changes to the url
    > structure.
    > I have some important url's like this: www.mysite.com/bluewidgets/, Yet now
    > with the expansion of the site and url structure change (had to be done) we
    > also have urls like: www.mysite.com/country1/bluewidgets/ which serves up
    > identical content to the above first url.
    >
    > Is this bad? There is no way around it, cause if i dump my old url (i have
    > 50 important ones kept) I will have to get around 6,000 webmasters to change
    > my link url on their pages, which i dont want to have to do.
    > My programmer says it wont be a problem with google etc, but i'm worried. I
    > rely on this site for my income.
    > Is it possible to stop google from crawling and most importantly listing the
    > 50 new url's in the new format? So it sticks with the old ones? Everything
    > is done with php/mod rewrite rules and so its not simple for me to know.
    > Or is it possible to have 50 redirects from the new url's to the old ones?
    > Will that stop google listing both?
    >
    > How do i get round this? The problem is, because the site is very much
    > database driven, i have no way of making it use the old format url's for the
    > 50 in question. I hope this all makes sense. Thanks for any help,
    >
    > Chris
    >
    >[/color]


    Hi Chris,

    Have a look at the following article:
    Database-driven content management systems are everywhere. And with them come URLs only a robot could love. Bill Humphries shows how to transform CGI-generated URLs into meaningful user interfaces …


    Should point you in the right direction.

    Grz, Juliette

    Comment

    • steve

      #3
      Re: how to stop SE's listing both url's ?

      "Chris242" wrote:[color=blue]
      > Hello
      > Am really worried, so wondered if anyone could help.
      >
      > My site outgrew itself recently so we've had to make changes
      > to the url
      > structure.
      > I have some important url's like this:
      > www.mysite.com/bluewidgets/, Yet now
      > with the expansion of the site and url structure change (had
      > to be done) we
      > also have urls like: www.mysite.com/country1/bluewidgets/
      > which serves up
      > identical content to the above first url.
      >
      > Is this bad? There is no way around it, cause if i dump my old
      > url (i have
      > 50 important ones kept) I will have to get around 6,000
      > webmasters to change
      > my link url on their pages, which i dont want to have to do.
      > My programmer says it wont be a problem with google etc, but
      > i'm worried. I
      > rely on this site for my income.
      > Is it possible to stop google from crawling and most
      > importantly listing the
      > 50 new url's in the new format? So it sticks with the old
      > ones? Everything
      > is done with php/mod rewrite rules and so its not simple for
      > me to know.
      > Or is it possible to have 50 redirects from the new url's to
      > the old ones?
      > Will that stop google listing both?
      >
      > How do i get round this? The problem is, because the site is
      > very much
      > database driven, i have no way of making it use the old format
      > url's for the
      > 50 in question. I hope this all makes sense. Thanks for any
      > help,
      >
      > Chris[/color]

      From what I have read, the best way is with permanent redirects.
      Google talks about it: http://www.google.com/remove.html#change_url

      --
      http://www.dbForumz.com/ This article was posted by author's request
      Articles individually checked for conformance to usenet standards
      Topic URL: http://www.dbForumz.com/PHP-stop-SE-...ict162227.html
      Visit Topic URL to contact author (reg. req'd). Report abuse: http://www.dbForumz.com/eform.php?p=543402

      Comment

      • Michael Fesser

        #4
        Re: how to stop SE's listing both url's ?

        .oO("Chris" <picturesofengl and(on spami)@hotmail. com>)
        [color=blue]
        >My site outgrew itself recently so we've had to make changes to the url
        >structure.
        >I have some important url's like this: www.mysite.com/bluewidgets/, Yet now
        >with the expansion of the site and url structure change (had to be done) we
        >also have urls like: www.mysite.com/country1/bluewidgets/ which serves up
        >identical content to the above first url.
        >
        >Is this bad?[/color]

        No, if done properly. Cool URIs don't change.
        [color=blue]
        >There is no way around it, cause if i dump my old url (i have
        >50 important ones kept) I will have to get around 6,000 webmasters to change
        >my link url on their pages, which i dont want to have to do.[/color]

        Keep the old URLs alive - don't drop them! Redirect them with a 301
        ("Moved Permanently") HTTP status code to the new URLs. There are
        different ways to achieve this (script or server configuration:
        mod_alias, mod_rewrite).
        [color=blue]
        >My programmer says it wont be a problem with google etc, but i'm worried. I
        >rely on this site for my income.[/color]

        Having multiple URLs pointing to the same resource is always bad, it
        confuses search engines and caches (the same resource will be cached
        multiple times).

        Micha

        Comment

        • Markus Ernst

          #5
          Re: how to stop SE's listing both url's ?

          Chris wrote:
          [color=blue]
          > How do i get round this? The problem is, because the site is very much
          > database driven, i have no way of making it use the old format url's
          > for the 50 in question. I hope this all makes sense.[/color]

          If it is about preventing search engines from indexing pages you might want
          to search for informations about the robots.txt file which allows you to
          exclude specified files and folders from search engine indexing. You can
          also use the meta robots tag, but you have to include this one into the HTML
          head of every page.

          HTH
          Markus


          Comment

          Working...