Replies: 1 comment 1 reply
-
By the way, it's not good idea handling |
Beta Was this translation helpful? Give feedback.
1 reply
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
Uh oh!
There was an error while loading. Please reload this page.
-
Is there a way to force trailing slash for URLs? E.g.
/post
is not equal to/post/
although Adonis handles them as the same.I have this named route:
Notice the slash at the end of the url. If I use
{{route('auth.signup.show')}}
I will get/signup
without the slash.Edit: in another example there is a trailing slash for some reason:
In this case
{{route('posts.index')}}
gives me/posts/
with a slash, even if I remove the slash after/:page?
parameter.Beta Was this translation helpful? Give feedback.
All reactions