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

Popular posts from this blog

php - failed to open stream: HTTP request failed! HTTP/1.0 400 Bad Request -

java - How to filter a backspace keyboard input -

java - Show Soft Keyboard when EditText Appears -