On Wed, 2004-05-05 at 03:35, Info wrote: > I have an alias /dav/ which points to /home/www. > But when I try to redirect to /dav/userXYZ the DAV client complains > that > "Server doesnt support WebDAV at resource /dav/home
This doesn't really sound like a mod_perl problem. Sounds more like a web dav configuration problem, or a general apache config problem. > 3. Eventually I want to redirect into another path that the handler > handles, > so that I can reject invalid requests. > This means 2 handlers for the same URI: my .pm and mod_dav. > How can I "handle" a request then (optionally) pass it on to mod_dav? If your handler runs in an earlier phase than mod_dav, it should be no problem. Actually, it shouldn't be a problem anyway to have multiple handlers for the access and auth phases. - Perrin -- Report problems: http://perl.apache.org/bugs/ Mail list info: http://perl.apache.org/maillist/modperl.html List etiquette: http://perl.apache.org/maillist/email-etiquette.html
