Is it possible to ask Google to drop a page or a whole site's URL after moving to another server? For the first time in 6 years I have moved a site from a free to a payed server and now there are lots of broken links, well not only at Google but at Lycos and MSN as well.
You don't have to ask google, just tell its robots you've moved using a an html 301 permanent redirect code in your .htaccess file on your old server pointing to your new site. But make sure it's a 301 though and not a 302 (temporary redirect), otherwise you may end up banned, just like business.com see webpronews.com/insiderreports/searchinsider/wpn-49-20040908WhyBusinesscomWasBanned.html
Do you still have access to that free server site? If so, the following, although laborious, will work: 1. Create pages for each of the original pages on your site (i.e., same filename and subdirectory as applicable) containg the following code: <HTML> <HEAD> <META HTTP-EQUIV="REFRESH" CONTENT="10; URL=http://www.newsite.com/newpage.html"> <TITLE>This page has moved</TITLE> </head> <BODY> <P>This Page Has Moved<BR> Please update your bookmarks to <A href="http://www.newsite.com/newpage.html">http://www.newsite.com/newpage.html</A> </p> </body> </html> Code (markup): This will preserve any PR until you can get all your backlinks updated:see #2. As an alternative (not as good but faster), if the free server allows you to specify a custom error page (doubtful), you can direct all errors to that page, e.g., error404.html, and place that redirect above to your home page on the new site. Note: that "10" in <META HTTP-EQUIV="REFRESH" CONTENT="10; Code (markup): refers to the number of seconds before the page redirects to your new site. Don't set it to less than 10, first, because you want human visitors people to make note of the fact that you've moved (and the link is there for them to redirect sooner if they wish), and, second, because it has been suggested that shorter durations may be interpreted by search engines as attempted cloaking/spoofing. 2. Now the slowest part: go to Google, Yahoo, Alltheweb, etc., etc., and find all the backlinks you can. Go to those pages and contact the webmasters to inform them that your site has moved and ask them to update their links. Wait one month. Repeat for all backlinks not yet updated. Repeat at monthly intervals for about 6 months - most of the sites should have updated your links by then and by that time any previous PR should have transferred to the new site.
Thanks minstrel for your advice. Fortunately I still have access to the free site so I uploaded all pages again. According to your suggestions I have modified some key pages hoping they don't realize I'm moving, at least for a while.
You missed Part 2 of my post. Part 1 only takes care of human visitors who find your site through the search engines. It also provides spiders with a link to the new page so actually using your "noindex,nofollow' tag is a bad idea. Part 2 is equally important: As long as your backlinks keep pointing to the old URL, any PR accruing to your pages will continue to list the old pages -- that's why it's essential that you begin your email campaign to have those expired links edited to point to the new pages.
Minstrel, I agree with you with e-mailing the backlinks' to tell them about the new URL. But that depends on how many you have. It's not really feasible in my case, there are simply too many. Many are old sites that haven't been updated in years. BTW it's noindex, FOLLOW, noarchive. I'm open to all suggestions to get rid of the old URL on Yahoo and other SE without touching anything on the server. (it's really off limits for me, don't ask why)
So it is... I read that too quickly in the heat of pretending I could multitask. My apologies. The truth is I suck at multitasking but I just can't admit it to myself yet... Which makes me wonder if I misinterpreted the initial post as well.... Johncr: when you moved your site from a free server, I assumed that the URL also changed, for example from something like www.geocities.com/johncr/index.html to something like www.johncr.com -- was that a correct assumption?