当前位置: 首页 > 工具软件 > gorilla/mux > 使用案例 >

golang gorilla/mux设置静态目录

孔海超
2023-12-01
发现网上都是类似下面的代码
```
s :=   "/Users/golang/golang";
http.Handle("/static/",http.StripPrefix("/static/",http.FileServer(http.Dir(s))))
```
经过mux设置就是如下代码

```

router := mux.NewRouter().StrictSlash(true)
s :=   "/Users/golang/golang";
router.Handle("/static/",http.StripPrefix("/static/",http.FileServer(http.Dir(s))))

```

其实这样并不能访问static目录下的文件,包括下载。访问/static/会返回static目录下的文件结构,但是点击的时候回返回404,应该是没有相应的路由,匹配上就可以了:

```

router.PathPrefix("/static/").Handler(http.StripPrefix("/static/",http.FileServer(http.Dir(s)))
));

```

 类似资料: