You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@httpd.apache.org by Jan Vavra <va...@software602.cz> on 2006/04/05 09:32:32 UTC

apache module

Hello,
I'm writing a module for apache 2.x. I don't want implement method PUT.
So I return DECLINED in
int my_module_handler(request_rec *r)
and I expect that apache call its own implementation of PUT method.
I think such behaviour was in apache 1.3

I don't have any special config. Simply:

LoadModule my_module modules/my_moudule.so
<Location /test>
 SetHandler  my_module
</Location>

Are my excpectations correct?

Jan