On Mon, 17 Sep 2007 15:19:18 +0200
gromeck <[EMAIL PROTECTED]> wrote:

> Now I get only requests for this directory, but for all types
> of files. Do I have to filter out the extension on my own?

You do not have to filter out the extension but the handler name.

Add something like
if (strcmp(r->handler, "mymodule") != 0) return DECLINED;
to the first line of handler function of your module.

-- 
Takashi Sato
[EMAIL PROTECTED]

Reply via email to