router_static.go: add charset for html content
This commit is contained in:
parent
f4489c9921
commit
685f3a3a58
@ -116,7 +116,7 @@ func staticRouterInit(router *mux.Router) error {
|
||||
if path.Ext(p) != "" {
|
||||
contentType[p] = mime.TypeByExtension(path.Ext(p))
|
||||
} else {
|
||||
contentType[p] = mime.TypeByExtension("html")
|
||||
contentType[p] = "text/html; charset=utf-8"
|
||||
}
|
||||
|
||||
router.HandleFunc(p, func(w http.ResponseWriter, r *http.Request) {
|
||||
|
Loading…
Reference in New Issue
Block a user