windows下静态文件映射找不到问题,

path.Clean和filepath.Clean是有区别的
This commit is contained in:
nkbai 2015-11-27 12:10:39 +08:00
parent d693ecf046
commit 2c8cb5693e
1 changed files with 2 additions and 4 deletions

View File

@ -18,20 +18,18 @@ import (
"net/http"
"os"
"path"
"path/filepath"
"strconv"
"strings"
"github.com/astaxie/beego/context"
"github.com/astaxie/beego/utils"
)
func serverStaticRouter(ctx *context.Context) {
if ctx.Input.Method() != "GET" && ctx.Input.Method() != "HEAD" {
return
}
requestPath := filepath.Clean(ctx.Input.Request.URL.Path)
requestPath := path.Clean(ctx.Input.Request.URL.Path)
// special processing : favicon.ico/robots.txt can be in any static dir
if requestPath == "/favicon.ico" || requestPath == "/robots.txt" {
file := path.Join(".", requestPath)