The following router shows 404 with `/index.html`, but instead only works with `//index.html` (with double `/` prefix). ```rust router! { "/" => static_router!("./static") } ``` This should be fixed so `/index.html` matches directly.