mirror of
https://github.com/labstack/echo.git
synced 2024-11-24 08:22:21 +02:00
parent
bcbd9a0f42
commit
2dc1d53da5
5
echo.go
5
echo.go
@ -422,8 +422,9 @@ func (e *Echo) add(method, path string, handler HandlerFunc, middleware ...Middl
|
||||
func (e *Echo) Group(prefix string, m ...MiddlewareFunc) (g *Group) {
|
||||
g = &Group{prefix: prefix, echo: e}
|
||||
g.Use(m...)
|
||||
// Dummy handler so group can be used with static middleware.
|
||||
g.Get("", func(c Context) error {
|
||||
// Dummy handler to use static middleware with groups
|
||||
// See also issue #446
|
||||
g.Get("/", func(c Context) error {
|
||||
return c.NoContent(http.StatusNotFound)
|
||||
})
|
||||
return
|
||||
|
@ -55,7 +55,7 @@ func StaticFromConfig(config StaticConfig) echo.MiddlewareFunc {
|
||||
return func(c echo.Context) error {
|
||||
fs := http.Dir(config.Root)
|
||||
p := c.Request().URL().Path()
|
||||
if c.P(0) != "" { // If serving from `Group`, e.g. `/static/*`
|
||||
if c.P(0) != "" { // If serving from `Group`, e.g. `/static*`
|
||||
p = c.P(0)
|
||||
}
|
||||
file := path.Clean(p)
|
||||
|
Loading…
Reference in New Issue
Block a user