I want to send parameters with url , I try these both ways
First way
return $this->_helper->redirector->gotoSimple('index','visit','visits',$params);
and this way
$urlOptions = array('module' => 'visits', 'controller' => 'visit'
, 'action' => 'index', 'page' => 'add');
$this->_helper->redirector->gotoRoute($urlOptions);
and the url becomes like this
http://localhost/zendApps/InspectionSys/public/visits/visit/index/page/add
but the redirection goes to the default page not to add page!
pagea variable or ispagea different web page you are trying to navigate to? Ifpageis a variable you are passing put it in an array and call it a day. Ifpageis a web page you are trying to navigate to you are completely incorrect. Either call thepageas an action in a controller or callpageas a url using$this->_redirector('url/to/page');– RockyFord Mar 16 '12 at 6:01returnto the line. I've had problems in the past where the redirection wasn't working correctly because of that. The line would be:return $this->getHelper('redirector')->gotoUrl('/url/to/page');– Maxime Mar 16 '12 at 18:53_redirectorandgetHelper('Redirector')are different methods. As for thereturnthing, who recommends this? In what context? and where can I see to documentation. I really want to know. – RockyFord Mar 16 '12 at 23:14