Hi, Is it possible to configure httpd.conf in such a way that when the users request the / directory, that module will handle it, but if the users request for a static file like /style.css for example, that file is served?
I have tried: <Location /> SetHandler perl-script PerlResponseHandler Foo::Bar </Location> If the dir / is requested, it is all right. If... for example /baz is requested, and another perl module is set to handle the requests to /baz, that module handles it, so it is all right in that case too, but if a certain static file like .css or image file are requested, they are not showed. Thanks. Teddy