mirror of https://github.com/gin-gonic/gin.git
Fixing bug with static pathing
This commit is contained in:
parent
c0e8cedc98
commit
6167586d8f
|
@ -111,11 +111,11 @@ func (group *RouterGroup) UNLINK(relativePath string, handlers ...HandlerFunc) {
|
||||||
func (group *RouterGroup) Static(relativePath, root string) {
|
func (group *RouterGroup) Static(relativePath, root string) {
|
||||||
absolutePath := group.calculateAbsolutePath(relativePath)
|
absolutePath := group.calculateAbsolutePath(relativePath)
|
||||||
handler := group.createStaticHandler(absolutePath, root)
|
handler := group.createStaticHandler(absolutePath, root)
|
||||||
absolutePath = path.Join(absolutePath, "/*filepath")
|
relativePath = path.Join(relativePath, "/*filepath")
|
||||||
|
|
||||||
// Register GET and HEAD handlers
|
// Register GET and HEAD handlers
|
||||||
group.GET(absolutePath, handler)
|
group.GET(relativePath, handler)
|
||||||
group.HEAD(absolutePath, handler)
|
group.HEAD(relativePath, handler)
|
||||||
}
|
}
|
||||||
|
|
||||||
func (group *RouterGroup) createStaticHandler(absolutePath, root string) func(*Context) {
|
func (group *RouterGroup) createStaticHandler(absolutePath, root string) func(*Context) {
|
||||||
|
|
Loading…
Reference in New Issue