The code below DOESN’T redirect:
return $this->_helper->redirector->gotoUrl('/customer/');
but this one DOES redirect:
echo 'redirect';
return $this->_helper->redirector->gotoUrl('/customer/');
Any ideas? They both work on my localhost but only the second works on my client’s machine.
I could add echo ‘something’ before every redirect call but not sure why it works that way.
Try once like this :
It will surely work.