I am attempting to use the Gorilla toolkit\'s mux package to route URLs in a Go web server. Using this question as a guide I have the following Go code:
fu
Try this:
fileHandler := http.StripPrefix("/static/", http.FileServer(http.Dir("/absolute/path/static"))) http.Handle("/static/", fileHandler)