在 Negroni 下找不到路由时提供索引文件

Serving index file when route not found under Negroni

我正在为 Web api 服务器使用 Golang、Negroni 和 Gorilla mux。我在 /api 下有我的 api 路由,我正在使用 Negroni 在 /public 目录中使用 / 下的 url 提供静态文件。我想提供我的 index.html 文件(包含单页 javascript 应用程序),不仅是在按名称或作为索引文件请求时,而且如果请求否则会导致 404,因为它不对应于 /public 目录中的路由或文件。这样一来,这些 URL 将加载将转换到正确路由(客户端 javascript history/pushState)的 Web 应用程序,否则如果该资源不存在,则会给出未找到的错误。有没有办法让 Negroni 的静态中间件或 Gorilla mux 来执行此操作?

mux 库中的 Router 类型有一个类型为 http.HandlerNotFoundHandler 字段。这将允许您按照您认为合适的方式处理不匹配的路线:

// NotFoundHandler overrides the default not found handler
func NotFoundHandler(w http.ResponseWriter, r *http.Request) {
    // You can use the serve file helper to respond to 404 with
    // your request file.

    http.ServeFile(w, r, "public/index.html")
}

func main() {
    r := mux.NewRouter()
    r.NotFoundHandler = http.HandlerFunc(NotFoundHandler)

    // Register other routes or setup negroni

    log.Fatal(http.ListenAndServe(":8080", r))
}