我需要设置位于“public”文件夹中的默认页面“index.html”。我如何在 Martini 框架中做到这一点?
我试过这个,但它不起作用:
func main() {
m := martini.Classic()
static := martini.Static("public", martini.StaticOptions{Fallback: "/index.html", Exclude: "/send"})
m.NotFound(static, http.NotFound)
m.Use(static)
m.Get("/send", sendEmail)
m.Run()
}