As weird it may sound, I have this fancy habit of hitting the search button on my name and getting euphoric (seeing the results). Recently, I got a new domain name and transferred my older one to this new one. So, now http://bandan.co.in actually points to http://oughts.org. Did this make Google search go insane ? Have a look: The following results show my web page entry 3rd in the list, when I search for "bandan das" on google.
The date: 20th Feb 2007.
Just a day after on 22nd Feb 2007, my home page doesn't show up in the search results at all! Not even the 2nd, the 3rd or the 4th page. Interestingly, this trend repeats itself every four to five days. That means, I can expect my home page to come up in the search again on 26th Feb. 2007
Some kind of repetitive disorder I guess ;)
Moved Temporary
By gas (not verified)Your apache server is sending the wrong response , at least if you still want to show up in google...bandan.co.in answers 302 moved temporary while it should answear 301 moved permanently.
My suggestion considering all this seo stuff is to change the redirect to a 301 , this way you won't lose your old domain pageranks, if you use htaccess this should work
Options +FollowSymLinks
RewriteEngine on
RewriteCond %{HTTP_HOST} ^[www\.]*bandan.co.in [NC]
RewriteRule ^(.*)$ http://oughts.org/$1 [R=301,L]
If you won't change your response code bandan.co.in won't show up in google again.