1
0
mirror of https://github.com/astaxie/beego.git synced 2025-07-04 09:50:18 +00:00

beego: filter the static file's url

This commit is contained in:
astaxie
2014-04-07 14:20:30 +08:00
parent 3fe4f8c362
commit 4124760706
2 changed files with 3 additions and 2 deletions

View File

@ -138,6 +138,7 @@ func SetStaticPath(url string, path string) *App {
if !strings.HasPrefix(url, "/") {
url = "/" + url
}
url = strings.TrimRight(url, "/")
StaticDir[url] = path
return BeeApp
}