Let\'s say we have a module named Cart and want to redirect users if some condition is met. I want to place a redirect at the module bootstrapping stage, before the applicat
Can you try this.
$front = Zend_Controller_Front::getInstance(); $response = new Zend_Controller_Response_Http(); $response->setRedirect('/profile'); $front->setResponse($response);