1
0
mirror of https://github.com/astaxie/beego.git synced 2024-06-01 08:53:28 +00:00
This commit is contained in:
astaxie 2013-09-28 21:45:52 +08:00
parent c4edc13413
commit 8a37c30f35

View File

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