Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have this redirection:

$this->_helper->redirector('freenights/supplierId/' . $sws. '/contractId/' . $con);

It redirects me to this url:

http://contract.local/contracts/freenights%2FsupplierId%2F3%2FcontractId%2F2

but I get this 404 error:

The requested URL /contracts/freenights/supplierId/3/contractId/2 was not found on this server.

If I don't have any problem going directly to

http://contract.local/contracts/freenights/supplierId/3/contractId/2

why am I getting the 404?

share|improve this question
have a look at this answer – gowri Dec 31 '12 at 9:33

2 Answers

up vote 3 down vote accepted

Try using goToUrl method of Redirector helper. See exmaple 6 in Zend Framework manual

$this->_redirector = $this->_helper->getHelper('Redirector');
$this->_redirector->gotoUrl('freenights/supplierId/' . $sws. '/contractId/' . $con);
share|improve this answer

I guess you are getting 404 error due to URLEncoder issue, for test try with Header function.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.