我有这段代码可以将http/s请求重定向到登录页面,除了TimeoutHandler无效外,它可以正常工作,我的意思是session不会在3秒后超时:funcmain(){mux:=http.NewServeMux()rh:=http.RedirectHandler("http://10.130.0.10:820/login",307)mux.Handle("/",rh)tmux:=http.TimeoutHandler(mux,time.Second*3,"Timeout!")gohttp.ListenAndServe("10.130.0.10:818",tmux)gohttp.Li