我使用 Gorilla Mux 作为我的网络服务器。
我定义了一堆路由,但如果没有匹配的路由,我希望它为我的 index.html 文件提供服务。
func (mgr *ApiMgr) InstantiateRestRtr() *mux.Router {
mgr.pRestRtr = mux.NewRouter().StrictSlash(true)
mgr.pRestRtr.PathPrefix("/api/").Handler(http.StripPrefix("/api/",
http.FileServer(http.Dir(mgr.fullPath+"/docsui"))))
for _, route := range mgr.restRoutes {
var handler http.Handler
handler = Logger(route.HandlerFunc, route.Name)
mgr.pRestRtr.Methods(route.Method)
.Path(route.Pattern)
.Name(route.Name)
.Handler(handler)
}
// Here I want to catch any unmatched routes, and serve my '/site/index.html` file.
// How can I do this?
return mgr.pRestRtr
}
慕村225694
相关分类