mirror of
https://github.com/astaxie/beego.git
synced 2024-11-22 14:50:55 +00:00
fix #226
This commit is contained in:
parent
c4edc13413
commit
8a37c30f35
@ -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 200 /admin/ 404
|
||||||
// pattern /admin/ url /admin 301 /admin/ 200
|
// pattern /admin/ url /admin 301 /admin/ 200
|
||||||
if requestPath[n-1] != '/' && len(route.pattern) == n+1 &&
|
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)
|
http.Redirect(w, r, requestPath+"/", 301)
|
||||||
return
|
return
|
||||||
}
|
}
|
||||||
|
Loading…
Reference in New Issue
Block a user