1
0
kopia lustrzana https://github.com/astaxie/beego.git synced 2025-07-17 18:52:16 +00:00

Merge pull request #3345 from dingyuanhong/develop

fix / can use dynamic directory
This commit is contained in:
astaxie
2018-10-23 13:43:45 +08:00
zatwierdzone przez GitHub

Wyświetl plik

@@ -178,7 +178,7 @@ func searchFile(ctx *context.Context) (string, os.FileInfo, error) {
if !strings.Contains(requestPath, prefix) {
continue
}
if len(requestPath) > len(prefix) && requestPath[len(prefix)] != '/' {
if prefix != "/" && len(requestPath) > len(prefix) && requestPath[len(prefix)] != '/' {
continue
}
filePath := path.Join(staticDir, requestPath[len(prefix):])