我正在使用Golang,Negroni和Gorilla mux作为web api服务器。我在/ api下有我的api路由,我使用Negroni使用/下的url从我/ public目录中提供静态文件。我想提供我的index.html文件(包含单页javascript应用程序),不仅是因为它是通过名称或索引文件请求,而且如果请求否则会导致404,因为它不对应于/ public目录中的路由或文件。这样,这些URL将加载将转换到正确路由(客户端javascript history / pushState)的webapp,或者如果该资源不存在则给出未找到的错误。有没有办法让Negroni的静态中间件或Gorilla mux这样做?
答案 0 :(得分:4)
mux库中的Router
类型具有NotFoundHandler
类型的http.Handler
字段。这将允许您根据需要处理不匹配的路线:
// 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))
}