I made a file in library/My/Utils/Utils.php. The content of the file is :
class My_Utils_Utils{
public function test(){
$this->_redirect('login');
}
}
This class is called from a layout; the problem is with the _redirect();
I get this error : The page isn't redirecting properly. My question is how call the _redirect()
function from a class made by you in ZEND framework 1 .
Thanks in advance.