views:

199

answers:

2

I've read the w3.org spec on the 'HEAD' verb, and I guess I'm missing something. I can't see how it would be useful.

Is the HTTP 'HEAD' verb useful in web development?

If so, how?

+3  A: 

From RFC2616:

This method (HEAD) can be used for obtaining metainformation about the entity implied by the request without transferring the entity-body itself. This method is often used for testing hypertext links for validity, accessibility, and recent modification.

The reason why HEAD is preferred to GET is due to the absence of the message body in the response making it using in scenarios where you want to determine if the content has changed at all - a change in the last modified time or content length usually signifies this.

Also, a HEAD request will provide some information about the server setup (whether it is IIS/Apache etc.), unless the server was masked; of course, this is available in all responses, but HEAD is preferred especially when you don't know the size of the response. HEAD is also the easiest way to determine if a site is up or down; again the irrelevance of the message body makes HEAD the ideal candidate.

I'm not sure about this, but RSS/ATOM feed readers would use HEAD over GET to ascertain if the contents of the feed have changed.

Vineet Reynolds
+1  A: 

It's mainly for browsers and proxies to determine whether they can use a cached copy of the web document without having to download the whole thing (which would rather defeat the purpose of a cache).

chaos
Do any current browsers do this? I thought they would just use a "GET" but include an "If-Modified-Since" request header.
David
Dunno. From what I can see in Tamper Data, Firefox sure doesn't. I suppose it would be more useful when there are more criteria than modification time involved, which would be more proxies than browsers.
chaos
David is right, unless there is a browser that does this. It is disadvantageous since the response will indicate whether the client should download the content or not, resulting in 2 requests instead of one. Probably useful for other HTTP clients though.
Vineet Reynolds
@chaos, yes proxy caches might be using HEAD.
Vineet Reynolds