> From: Jerry Baker [mailto:[EMAIL PROTECTED]] > > Is it correct for Apache to be executing includes when a HEAD request is > issued for a document that contains includes?
Yep. Apache treats a HEAD request exactly like a GET request, except that we don't return the body. The HTTP spec states that we have to return the same headers as we would return in a GET request, which usually means that we need to actually run the request. Ryan
