Zend: How to redirect to another page and also update browser' address bar with redirected page URL
- by NAVEED
I am using zend. I am redirecting from one page to another by following method.
$this-_redirect('/module/controller/action');
But above method does not update my browser's address bar with new page URL. I want to change browser's address bar also when I redirect to another page.
Thanks.