Skip to content

Instantly share code, notes, and snippets.

@dominicmartineau
Created July 5, 2013 13:28
Show Gist options
  • Save dominicmartineau/5934521 to your computer and use it in GitHub Desktop.
Save dominicmartineau/5934521 to your computer and use it in GitHub Desktop.
To handle 404 in Laravel 4, put this code into app/start/global.php...
App::missing(function($exception)
{
return Redirect::route('404');
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment