Join Slack
Powered by
How to make all these 4 to be routed to the same r...
# ktor
m
Manas Marthi
02/11/2024, 11:26 PM
How to make all these 4 to be routed to the same route ? Thank you
/login
,
/login/
,
/login/?
,
/login/#
n
Norbi
02/12/2024, 7:22 AM
# is client-side only (it is not sent to the server), so it has nothing to do with server side routing.
a
Aleksei Tirman [JB]
02/12/2024, 8:30 AM
You can do that by installing the
IgnoreTrailingSlash plugin
and defining only one route
"/login"
.
👍🏾 1
👍 1
m
Manas Marthi
02/12/2024, 12:01 PM
Thank you
2
Views
Open in Slack
Previous
Next