Commit 13d9bcc0 authored by Matthew Holt's avatar Matthew Holt

Clean URL middleware handles URLs ending with /

parent ba0d63d7
...@@ -8,6 +8,7 @@ import ( ...@@ -8,6 +8,7 @@ import (
"net/http" "net/http"
"os" "os"
"path" "path"
"strings"
"github.com/mholt/caddy/middleware" "github.com/mholt/caddy/middleware"
) )
...@@ -41,10 +42,11 @@ func New(c middleware.Controller) (middleware.Middleware, error) { ...@@ -41,10 +42,11 @@ func New(c middleware.Controller) (middleware.Middleware, error) {
// ServeHTTP implements the http.Handler interface. // ServeHTTP implements the http.Handler interface.
func (e Extensionless) ServeHTTP(w http.ResponseWriter, r *http.Request) { func (e Extensionless) ServeHTTP(w http.ResponseWriter, r *http.Request) {
if path.Ext(r.URL.Path) == "" { urlpath := strings.TrimSuffix(r.URL.Path, "/")
if path.Ext(urlpath) == "" {
for _, ext := range e.Extensions { for _, ext := range e.Extensions {
if resourceExists(e.Root, r.URL.Path+ext) { if resourceExists(e.Root, urlpath+ext) {
r.URL.Path = r.URL.Path + ext r.URL.Path = urlpath + ext
break break
} }
} }
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment