Skip to main content
Tutorial Free

Routes file: redirect "everything else" to homepage

July 05, 2016
1 min read
We all know that file app/Http/routes.php is used for listing all possible routes we need for our application. But what if we need to define a rule for "everything else"? Like, we have a list of our routes, and if the URL doesn't match any of those rules - we want to, for example, redirect to homepage instead of showing 404 error. Actually, there's a really simple "hack" for that. Basically, at the very end of your routes.php file you need to place the rule with where condition. Like this:
Route::any('{query}',
  function() { return redirect('/'); })
  ->where('query', '.*');
This line at the end of Routes file means that and URL query string that doesn't match anything above that line - will redirect to homepage. Of course, you can change that function to throw any other kind of error, log something etc.

Enjoyed This Tutorial?

Get access to all premium tutorials, video and text courses, and exclusive Laravel resources. Join our community of 10,000+ developers.

Comments & Discussion

No comments yet…

We'd Love Your Feedback

Tell us what you like or what we can improve

Feel free to share anything you like or dislike about this page or the platform in general.