On Sunday 19 June 2005 17:42, André Malo wrote: > Is mod_filter capable of something like this: > > AddOutputFilterByType INCLUDES httpd/unix-directory > > ? I'm personally using that heavily to get SSI into autoindex descriptions.
Yow! You mean httpd/unix-directory - which is most emphatically *not* a content type - is passing through ap_set_content_type? To answer your question, mod_filter can dispatch on r->handler, so if handler gets set to "httpd/unix-directory" then yes. If not, then it would need a workaround, such as dispatching on text/html and controlling the scope of that with a FilesMatch or something of that ilk. Or a patch to mod_filter. -- Nick Kew
