From 8a37c30f35841ebeea17c0951d3e7ec6ce57d0d2 Mon Sep 17 00:00:00 2001 From: astaxie Date: Sat, 28 Sep 2013 21:45:52 +0800 Subject: [PATCH] fix #226 --- router.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/router.go b/router.go index be063a9a..db12bb1f 100644 --- a/router.go +++ b/router.go @@ -382,7 +382,7 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request) // pattern /admin url /admin 200 /admin/ 404 // pattern /admin/ url /admin 301 /admin/ 200 if requestPath[n-1] != '/' && len(route.pattern) == n+1 && - route.pattern[n] == '/' && route.pattern[:n-1] == requestPath { + route.pattern[n] == '/' && route.pattern[:n] == requestPath { http.Redirect(w, r, requestPath+"/", 301) return }