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

This is a discussion on how to stop SE's listing both url's ? within the PHP Language forums, part of the PHP Programming Forums category; Hello Am really worried, so wondered if anyone could help. My site outgrew itself recently so we've had to ...


Go Back   Usenet Forums > PHP Programming Forums > PHP Language

FAQ Members List Calendar Search Today's Posts Mark Forums Read
  #1 (permalink)  
Old 10-19-2004
Chris
 
Posts: n/a
Default 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


Reply With Quote
  #2 (permalink)  
Old 10-19-2004
jrf[no]
 
Posts: n/a
Default Re: how to stop SE's listing both url's ?

Chris wrote:

> 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
>
>



Hi Chris,

Have a look at the following article:
http://www.alistapart.com/articles/urls/

Should point you in the right direction.

Grz, Juliette
Reply With Quote
  #3 (permalink)  
Old 10-20-2004
steve
 
Posts: n/a
Default Re: how to stop SE's listing both url's ?

"Chris242" wrote:
> 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


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
Reply With Quote
  #4 (permalink)  
Old 10-21-2004
Michael Fesser
 
Posts: n/a
Default Re: how to stop SE's listing both url's ?

.oO("Chris" <picturesofengland(on spami)@hotmail.com>)

>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?


No, if done properly. Cool URIs don't change.

>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.


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).

>My programmer says it wont be a problem with google etc, but i'm worried. I
>rely on this site for my income.


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
Reply With Quote
  #5 (permalink)  
Old 10-21-2004
Markus Ernst
 
Posts: n/a
Default Re: how to stop SE's listing both url's ?

Chris wrote:

> 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.


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


Reply With Quote
Reply
Thread Tools Search this Thread
Search this Thread:

Advanced Search
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are Off
[IMG] code is Off
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On




All times are GMT +1. The time now is 08:07 AM.


Powered by vBulletin® Version 3.7.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
Content Relevant URLs by vBSEO 3.0.0