1
0
mirror of https://github.com/labstack/echo.git synced 2025-07-05 00:58:47 +02:00
Signed-off-by: Vishal Rana <vr@labstack.com>
This commit is contained in:
Vishal Rana
2016-04-04 22:49:14 -07:00
parent bcbd9a0f42
commit 2dc1d53da5
2 changed files with 4 additions and 3 deletions

View File

@ -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)