0
Fork 0
mirror of https://github.com/caddyserver/caddy.git synced 2024-12-23 22:27:38 -05:00

Clean URL middleware handles URLs ending with /

This commit is contained in:
Matthew Holt 2015-03-24 21:56:22 -06:00
parent ba0d63d722
commit 13d9bcc0c7

View file

@ -8,6 +8,7 @@ import (
"net/http"
"os"
"path"
"strings"
"github.com/mholt/caddy/middleware"
)
@ -41,10 +42,11 @@ func New(c middleware.Controller) (middleware.Middleware, error) {
// ServeHTTP implements the http.Handler interface.
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 {
if resourceExists(e.Root, r.URL.Path+ext) {
r.URL.Path = r.URL.Path + ext
if resourceExists(e.Root, urlpath+ext) {
r.URL.Path = urlpath + ext
break
}
}