How can I redirect to another module?
return $this->redirect()->toRoute(null, array( \'module\' => \'othermodule\', \'controller\' => \'s
This is the way of redirection in ZF2:
return $this->redirect()->toRoute('ModuleName', array('controller'=>$controllerName, 'action' => $actionName, 'params' =>$params));
I hope this helps you.