/ Published in: PHP
URL: http://stackoverflow.com/questions/4108382/cakephp-redirecting-all-404-errors-to-the-homepage
create the file app/app_error.php with the following code
Expand |
Embed | Plain Text
class AppError extends ErrorHandler { function error404($params) { // redirect to homepage $this->controller->redirect('/'); } }
You need to login to post a comment.
