mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 06:50:54 +00:00
fix / can use dynamic directory
This commit is contained in:
parent
ea9c5822e6
commit
dff9c8f5fa
@ -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):])
|
||||
|
Loading…
Reference in New Issue
Block a user