You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
For a GET this is a pretty standard pattern. It's also a lovely aesthetic, with leaving off a trailing slash being a legacy/common trait on a static file -- /index.html, /route/some/item/item5.html.
This makes for a much more flexible route matching:
- route /foo matches /foo as well as /foo/
- route /bar/ matches /bar/ as well as /bar
Closesangular#784
This makes for a much more flexible route matching:
- route /foo matches /foo and redirects /foo/ to /foo
- route /bar/ matches /bar/ and redirects /bar to /bar/
Closesangular#784
For a
GET
this is a pretty standard pattern. It's also a lovely aesthetic, with leaving off a trailing slash being a legacy/common trait on a static file --/index.html
,/route/some/item/item5.html
.ATM I'm using:
I could work a pull request up if you guys were interested, otherwise keep on using my helper fn.
The text was updated successfully, but these errors were encountered: