php - How to redirect the user to home page in routes in laravel 4 -
i need redirect user home page if goes page not found i.e.,404 error
i saw in laravel error handling
but possible in routes ?
route::get('/', 'maincontroller@mainpage');
above given route home
if need in routes should have in top of routes
app::missing(function($exception) { return redirect::to('/'); });
Comments
Post a Comment