Forum Moderators: open
Appreciate any knowledgable responses!
Jeff
I don't think it would be very wise to have the pages identical, but if the page you want to remove is a significant doorway page for you, then I would:
1 leave the first page up,
2 move the strong content to the new page,
3 put 'similar' content in the existing page, with a link to the new page.
The search engines will present results based on the info they currently have, so people will come to your existing page.
When the search engines re-spider you, they will update content for the existing page and index the new page... making the new page your doorway.
Once the important spiders have been visiting, you can get rid of the first page.
of course... it'd be nice if you could get all the spiders to show up on the same day. :)
...Or you could just rename the page and use a server redirect to "point" all requests for
oldpage.html to newpage.html using a permanent external redirect. The search engines will follow
a permanent redirect (in almost all cases - although some have reported problems, I've never had
any trouble) and replace the old page with your new page. As long as you leave the external
redirect in place, requests for oldpage.html will "magically" land on (redirect to) newpage.html,
and the visitors address bar will get updated (which is what is meant by an external redirect - it
is visible externally, meaning to the visitor's browser). To make sure the search engines update
and index the new page, your server must specify a permanent redirect, and return a response code
of 301.
Anyway, all that taken together, you must accomplish a "permanent external redirect". How to do
this varies by server type.
For more information, use the wmw site search and look for ".htaccess mod_rewrite
redirect" or similar terms. Note that this is for Apache Server. You can do similar things on other
servers using various methods to accomplish the redirection, such as .asp on IIS servers. This may
sound complex, but it may in fact be simpler than copying pages and having to watch for all the
spiders to "get it".
Jim