golang 静态文件服务器

前端之家收集整理的这篇文章主要介绍了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/"))))
原文链接:https://www.f2er.com/go/190297.html

猜你在找的Go相关文章