Subject: | AxKit ignores the HTTP HEAD command. |
If an HTTP HEAD request is made to a server running AxKit, AxKit ignores the HEAD command and sends the entire page.
This can easily be fixed by adding the line:
return DONE if $r->method eq 'HEAD';
after any instance of $r->send_http_header();