> Can you set up a custom error document handler and redirect to that,     
> rather than using your OnDeny?  Return something like 409
> ("Conflict"), and Apache will do an internal redirect, from which
> you can get the requesting URI in the same way that you can in
> other redirects.
> 

> Actually, how is the require handled? What does your auth handler
> return if the user is not subscribed?  Can/does your handler do an
> internal redirect?

I do (in my C handler):
        ap_table_set (r->headers_out, "Location", sec->auth_LNonDeny);
        return REDIRECT;

your suggestion sounds good, off to hit my books to see how to do that -
sounds like a good solution (never done an internal redirect - I think -))
  thanks for the pointer,  
      Bob Waldstein   [EMAIL PROTECTED]


Reply via email to