Skip to content
Toggle navigation
Toggle navigation
This project
Loading...
Sign in
张磊
/
FileStorageBeego
Go to a project
Toggle navigation
Toggle navigation pinning
Projects
Groups
Snippets
Help
Project
Activity
Repository
Pipelines
Graphs
Issues
0
Merge Requests
0
Wiki
Network
Create a new issue
Builds
Commits
Issue Boards
Files
Commits
Network
Compare
Branches
Tags
d6dd84d5
authored
2013-05-08 16:35:29 +0800
by
astaxie
Browse Files
Options
Browse Files
Tag
Download
Email Patches
Plain Diff
favicon.ico default deal with static files
1 parent
ce77c273
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
router.go
router.go
View file @
d6dd84d
...
...
@@ -223,6 +223,12 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request)
//static file server
for
prefix
,
staticDir
:=
range
StaticDir
{
if
r
.
URL
.
Path
==
"/favicon.ico"
{
file
:=
staticDir
+
r
.
URL
.
Path
http
.
ServeFile
(
w
,
r
,
file
)
w
.
started
=
true
return
}
if
strings
.
HasPrefix
(
r
.
URL
.
Path
,
prefix
)
{
file
:=
staticDir
+
r
.
URL
.
Path
[
len
(
prefix
)
:
]
http
.
ServeFile
(
w
,
r
,
file
)
...
...
Write
Preview
Styling with
Markdown
is supported
Attach a file
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 post a comment