1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-23 18:54:13 +00:00

fix router's /path/

This commit is contained in:
astaxie 2013-07-30 22:38:01 +08:00
parent 572e281566
commit a997ca746f

View File

@ -386,7 +386,7 @@ func (p *ControllerRegistor) ServeHTTP(rw http.ResponseWriter, r *http.Request)
if (requestPath[n-1] != '/' && route.pattern == requestPath) ||
(requestPath[n-1] == '/' && len(route.pattern) >= n-1 && requestPath[0:n-1] == route.pattern) ||
(len(route.pattern)-1 == n && requestPath == route.pattern[:n-1]) {
(len(route.pattern) == n+1 && requestPath == route.pattern[0:n]) {
runrouter = route
findrouter = true
break