Mobile app version of vmapp.org
Login or Join
Steve110

: GoogleBot crawling a page up to 3,000 times per day For a website, GoogleBot daily crawls one particular URL more than one thousand times (mainly between 1,500 and 3,000, sometimes much more).

@Steve110

Posted in: #Google #Googlebot #Seo #WebCrawlers

For a website, GoogleBot daily crawls one particular URL more than one thousand times (mainly between 1,500 and 3,000, sometimes much more).

The Googlebot IP is a real Google one (for example : 66.249.76.21).

This strange (?) behaviour has lasted (at least) for two years. We have recently turn from HTTP to HTTPS, but it is still the same...
The first time I met this behaviour, the web page contained a form: the GoogleBot used to send thousands GET and POST requests during a very short period, then stopped suddenly these requests when the form was canceled... but later, it tried again from another page with a form.

When I forbid this URL to the robot, after a short period, another URL is "chosen" by the GoogleBot and crawled again and again (and often in the same period during the day). The last "highly crawled" does not contain any form.

A few days ago, I made another test: the highly crawled URL sends a 302 to the home page.

Results: the GoogleBot follows the 302: but does not follow any files or links from the home page: it sends again and again the same GET request everyday more than 1000 times.

The results is that the main part of the crawl budget is wasted to this single url... Other Robots have not this behaviour.

Have you ever met such a singular observation? Could it be a kind of "security" test?

Any idea about what to do?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Steve110

1 Comments

Sorted by latest first Latest Oldest Best

 

@Cooney921

If you already have a sitemap for your website, you can try adding that page with a specific changefreq key. For example:

<?xml version="1.0" encoding="UTF-8"?>
<urlset
xmlns="http://www.sitemaps.org/schemas/sitemap/0.9"
xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance"
xsi:schemaLocation="http://www.sitemaps.org/schemas/sitemap/0.9
www.sitemaps.org/schemas/sitemap/0.9/sitemap.xsd >
<url>
<loc>http://example.com/mypage</loc>
<changefreq>weekly</changefreq>
<priority>1.00</priority>
</url>
</urlset>


in the case of your page being example.com/mypage. You should submit this sitemap to Google using Google Webmaster Tools, where you can also Change the Googlebot crawl rate.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme