Allow to execute another route by forwarding the request (reroute) ```java { get("/foo", ctx -> { return ctx.forward("/bar"); }); get("/bar", ctx -> { return "bar"; }); } ```
Allow to execute another route by forwarding the request (reroute)
{ get("/foo", ctx -> { return ctx.forward("/bar"); }); get("/bar", ctx -> { return "bar"; }); }