How can I redirect to another module?
return $this->redirect()->toRoute(null, array(
\'module\' => \'othermodule\',
\'controller\' => \'s
This is how I redirect from my Controller to another Route:
return $this->redirect()->toRoute('dns-search', array(
'companyid' => $this->params()->fromRoute('companyid')
));
Where dns-search is the route I want to redirect to and companyid are the url params.
In the end the URL becomes /dns/search/1 (for example)