How to make all these 4 to be routed to the same route ? Thank you `/login` , `/login/` , `/login/?...
m
How to make all these 4 to be routed to the same route ? Thank you
/login
,
/login/
,
/login/?
,
/login/#
n
# is client-side only (it is not sent to the server), so it has nothing to do with server side routing.
a
You can do that by installing the IgnoreTrailingSlash plugin and defining only one route
"/login"
.
👍🏾 1
👍 1
m
Thank you