Your Ad Here

Posted By

nielsenrc on 04/13/11


Tagged

php cakephp


Versions (?)

Redirect all 404s to Index Page in Cake PHP


 / 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

  1. class AppError extends ErrorHandler {
  2. function error404($params) {
  3. // redirect to homepage
  4. $this->controller->redirect('/');
  5. }
  6. }

Report this snippet  

You need to login to post a comment.