getting the user back where they came from with mod_form_auth

Posted by bmargulies on Pro Webmasters See other posts from Pro Webmasters or by bmargulies
Published on 2012-09-21T12:50:39Z Indexed on 2012/09/21 15:54 UTC
Read the original article Hit count: 236

Filed under:
|

Using the mod_form_auth module in Apache HTTPD 2.4.3, I am looking for a way to have the user redirected to their original desired target after completing a login.

That is, if I have a

<Location /protected>
   ... form auth config here
</Location>

the user might browse to /protected/a, or to protected/b. In either case, they will be presented with the login form. However, as far as I can see, I must specific a single 'success' URL. I'm wondering if I'm missing some Apache feature that would allow me to, for example, cause the redirect to the login form go to something like:

https://login.html?origTarget=/protected/a

via some syntax on the AuthForLoginRequiredLocation statement?

© Pro Webmasters or respective owner

Related posts about authentication

Related posts about httpd