我看了一个问题Serving static content with a root URL with the Gorilla toolkit并成功地使用了答案。
但是,我想明确声明我想要作为静态服务的文件,用于开发目的,如下所示:
router.PathPrefix("/style.css").Handler(http.FileServer(http.Dir("/usr/local/myproject/style.css")))
其中也按预期工作。
现在,我想知道,如果它是一种正确的方式来提供单个明确定义的文件,还是应该采用不同的方式?