Skip to content

Instantly share code, notes, and snippets.

@wishfoundry
Created January 17, 2013 20:45
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save wishfoundry/4559616 to your computer and use it in GitHub Desktop.
Save wishfoundry/4559616 to your computer and use it in GitHub Desktop.
Match any route with a trailing slash and redirect to the correct one
Route::get('{any}', function($url){
return Redirect::to(mb_substr($url, 0, -1), 301);
})->where('any', '(.*)\/$');
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment