Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in
Toggle navigation
B
beego
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Commits
Issue Boards
Open sidebar
go
beego
Commits
82e0105d
Commit
82e0105d
authored
Dec 04, 2015
by
nkbai
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Revert "windows下静态文件映射找不到问题,"
windows下路径需要filepath.ToSlash This reverts commit
2c8cb569
.
parent
ff0762cc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
2 deletions
+3
-2
staticfile.go
staticfile.go
+3
-2
No files found.
staticfile.go
View file @
82e0105d
...
...
@@ -19,6 +19,7 @@ import (
"net/http"
"os"
"path"
"path/filepath"
"strconv"
"strings"
"sync"
...
...
@@ -143,7 +144,7 @@ func isStaticCompress(filePath string) bool {
// searchFile search the file by url path
// if none the static file prefix matches ,return notStaticRequestErr
func
searchFile
(
ctx
*
context
.
Context
)
(
string
,
os
.
FileInfo
,
error
)
{
requestPath
:=
path
.
Clean
(
ctx
.
Input
.
Request
.
URL
.
Path
)
requestPath
:=
filepath
.
ToSlash
(
filepath
.
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
)
...
...
@@ -188,7 +189,7 @@ func lookupFile(ctx *context.Context) (bool, string, os.FileInfo, error) {
if
!
fi
.
IsDir
()
{
return
false
,
fp
,
fi
,
err
}
ifp
:=
path
.
Join
(
fp
,
"index.html"
)
ifp
:=
file
path
.
Join
(
fp
,
"index.html"
)
if
ifi
,
_
:=
os
.
Stat
(
ifp
);
ifi
!=
nil
&&
ifi
.
Mode
()
.
IsRegular
()
{
return
false
,
ifp
,
ifi
,
err
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment