Mobile app version of vmapp.org
Login or Join
Hamm4606531

: Google Index Status drop I have recently move to a new hosting, and it seems to have effect on the Google Index Status What could cause it?

@Hamm4606531

Posted in: #GoogleSearchConsole

I have recently move to a new hosting, and it seems to have effect on the Google Index Status



What could cause it?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Hamm4606531

1 Comments

Sorted by latest first Latest Oldest Best

 

@Angela700

Provided google doesn't think the new domain is a bad domain name or an overly promotional domain name with too many stuffed keywords, the only thing I can think of that can cause a sudden drop in indexing is the moment the real URL is in transition.

Just accept the index dropping for now, and if you still have access to the old URL, make all requests to the old URL redirect to the new URL to minimize loss of indexed pages. For example, if your new domain is example2.com and your old one is example.com, and your page is:
example.com/some/section
you can make a redirect to:
example2.com/some/section
If your old server runs on apache and you have full access to .htaccess files or even the server config file (httpd.conf), then add these lines in it:

RewriteEngine On
RewriteCond %{HTTP_HOST} ^www.example.com$ [NC]
RewriteRule ^(.*)$ example2.com/ [R=301,L]

That will (through redirect) effectively replace example.com with example2.com in the web browser address bar when someone tries to access your site at example.com

After the transition is complete, I would increase the maximum number of requests google is allowed to make to your site via site settings (available from clicking the gear icon on example.com domain) in google's webmaster tools, then I would wait a couple of days.

Its possible that you're trying to have google index the same content on two different sites but it is unaware which domain to use. Thats one reason why I suggested redirecting URLs on the old site to the new site.

Your best option overall is to wait a few days because eventually google will discover the old URLs no longer exist and will remove them from the index.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme