0

我需要设置位于“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()
}
4

1 回答 1

0

你做对了。检查public/文件夹中是否真的有index.html并且可以访问。

目前,如果后备文件不可访问,则错误会被静默丢弃。

于 2014-11-25T03:15:06.877 回答