#[get("/starts-with/{other_url}")]
async fn t1(other_url: web::Path<String>) -> impl Responder {
other_url.to_string()
}
This handler works for /starts-with/a, but it doesn't work for /starts-with/a/b.
How can I create a route which works with an arbitrary number of slashes?