On Tue, Jul 27, 2004 at 02:53:40PM +0200, Edi Weitz wrote:
As mentioned in the docs you can also use "LocationMatch." If you do that the directory "foo" doesn't have to be there.
<LocationMatch .mlp$> SetHandler lisp-handler
</Location>
In addition to SetHandler, do not forget about AddHandler. I use it as follows:
<Location /tbnl> AddHandler lisp-handler .html .css </Location>
This sends only .css and .html files under /tbnl to the lisp handler.