Dmitry the Zuryanovich wrote:

>Hello there,
>
> I have a directory with ErrorDocument 404 /feed/holder.rvt in .htaccess .
> When I get a GET request, holder.rvt is launched and works fine.
> But HEAD request gets 404 Not found response.
>
> Is it an apache problem or rivet-specific? What to do?
>  
>
Looks as if it may indeed be a Rivet thing.  I see this in the code:

    r->allowed |= (1 << M_GET);
    r->allowed |= (1 << M_POST);
    if (r->method_number != M_GET && r->method_number != M_POST) {
    retval = DECLINED;
    goto sendcleanup;
    }

You could try adding M_HEAD in there, and see if that fixes things. 
I'll try myself when I get a free moment...

Ciao,
Dave

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to