1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-04 22:13:33 +00:00

fix / can use dynamic directory

This commit is contained in:
dingyuanhong 2018-10-01 15:16:35 +08:00
parent ea9c5822e6
commit dff9c8f5fa

View File

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