Are internal redirects/route forwarding possible i...
# ktor
m
Are internal redirects/route forwarding possible in Ktor? E.g. if I get a request to /path1 I want to forward it to the /path2 handler. It'd also be great if data could be modified on the request before forwarding.
a
One way of doing it is described in this answer.
m
Thanks!