I'm trying to implement a login system that will be smart enough to redirect a user back to the page they were on before they decided (or were forced to) go to the login page.
I know this seems like a similar question to this one, and this one, but they do not address both of my scenarios.
There are two scenarios here:
User specifically decides to go to login page:
<a href="<?php echo $this->url(array( 'controller'=>'auth', 'action'=>'login'), 'default', true); ?>">Log In</a>User is redirected because they tried to access protected content:
if (!Zend_Auth::getInstance()->hasIdentity()) { $this->_helper->redirector('login', 'auth'); }
How can I implement a solution for this without displaying the "redirect to" url in the address bar?