golang 静态文件服务器

1、 http.Handle("/static/", http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))
2、mux.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir("static/"))))


你可能感兴趣的:(golang 静态文件服务器)