On zend framework inside my bootstrap file i have the following code:
$frontController = Zend_Controller_Front::getInstance();
try
{
$front->dispatch();
}
catch (Exception $e)
{
echo "Something wrong happen";
}
Instead the ugly message i want to redirect to a custom controller... how can i do that if i can not use $frontController to redirect .... ?
Thanks for your help..