Mobile app version of vmapp.org
Login or Join
Eichhorn148

: Googlebots request types Does Google's bot send HEAD requests as well as GET requests? I wondering about this because I'm running a Tornado application that does not support HEAD request and

@Eichhorn148

Posted in: #Googlebot #HttpHeaders #Soft404 #WebCrawlers

Does Google's bot send HEAD requests as well as GET requests?

I wondering about this because I'm running a Tornado application that does not support HEAD request and I have a lot of 404 errors in Google Search Console.

To verify that the Tornado application is not accepting HEAD requests I do:

curl -I example.com/this-url-exists

HTTP/1.1 404 Not Found
Date: Thu, 10 Mar 2016 08:49:07 GMT
Content-Type: text/html; charset=UTF-8
Content-Length: 7520
Connection: close
X-Ua-Compatible: IE=edge,chrome=1
Server: TornadoServer/4.2.1


I suspect that the Googlebots are doing the same for some of the crawling.

Can this be right?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Eichhorn148

1 Comments

Sorted by latest first Latest Oldest Best

 

@Jamie184

I'm pretty sure Googlebot does not send HEAD requests - at least not with respect to crawling and indexing a website.

My access logs from January and February 2016 show no HEAD requests from the Googlebot.

Even if Googlebot did use HEAD requests I would be very surprised if these resulted in a 404 error in Google Search Console. Google should only report a 404 error on a failed GET request.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme