CakePHP : Redirect a 404 Error Page
Just curious if maybe sometimes I need it or something :Dclass AppError extends ErrorHandler {Just simply put it inside app/app_error.php And taraaa.. It works on me.
function error404($params) {
// redirect to homepage
$this->controller->redirect('/');
}
}
2 comments
Write commentshi,
Replyif i set debug mode to 0 then it's not working ...
how to do this ?
Thanks..
To @anonymous, hm? It should be fine and working. Just FYI, it's for cakePHP 1.3.x, since my apps mostly on that version. I still not develop any app with higher version.
ReplyWhat is 'not working here'? Is it not redirecting? Or what?