fixed rice issue again

This commit is contained in:
Brad Rydzewski 2015-02-06 08:40:59 -08:00
parent c7c3300350
commit 66cf15d2d9

View file

@ -127,8 +127,11 @@ func main() {
// create handler for static resources
assetserve := http.FileServer(rice.MustFindBox("app").HTTPBox())
http.Handle("/robots.txt", assetserve)
http.Handle("/", assetserve)
http.Handle("/static/", http.StripPrefix("/static", assetserve))
http.HandleFunc("/", func(w http.ResponseWriter, r *http.Request) {
r.URL.Path = "/"
assetserve.ServeHTTP(w, r)
})
// create the router and add middleware
mux := router.New()