Created
March 12, 2011 09:58
-
-
Save stefl/867165 to your computer and use it in GitHub Desktop.
Redirect trailing slashes in Sinatra
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
get %r{(.+)/$} do |r| redirect r; end; |
Yes I had to do the same thing - I've updated it, thanks.
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
This was eating my path. For example
/foo/bar
was redirecting to/foo
This seems to work for me (haven't done much testing):