Actix web is a small, pragmatic, and extremely fast web framework for Rust. use actix_web::{web, App, Responder, HttpServer}; fn index(info: web::Path<(String, u32)>) -> impl Responder { format!("Hello {}! id:{}", info.0, info.1) } fn main() -> std::io::Result<()> { HttpServer::new(|| App::new().service( web::resource("/{name}/{id}/index.html").to(index)) ) .bind("127.0.0.1:8080")? .run() } Docume