views:

131

answers:

2

Is there a way to have your PerlAuthenHandler, PerlAuthzHandler, or even your PerlHandler change the error document for a request?

Example: When the user goes to a specific page and gets an error, I want to have a subroutine choose what error document errors are thrown to.

A: 

It is not possible. I will use a static ErrorDocument pointed at a perl program that will do the dynamic content

Lathan
+2  A: 

I think custom_response() may do what you want.

drench
Hey Thanks, but I ended up sending a redirect command from the PerlAuthenHandler or PerlAuthzHandler
Lathan