Search Options

Results per page
Sort
Preferred Languages
Advance

Results 1 - 1 of 1 for RedirectHandler (0.12 sec)

  1. src/net/http/server.go

    func htmlEscape(s string) string {
    	return htmlReplacer.Replace(s)
    }
    
    // Redirect to a fixed URL
    type redirectHandler struct {
    	url  string
    	code int
    }
    
    func (rh *redirectHandler) ServeHTTP(w ResponseWriter, r *Request) {
    	Redirect(w, r, rh.url, rh.code)
    }
    
    // RedirectHandler returns a request handler that redirects
    // each request it receives to the given url using the given
    // status code.
    Registered: Wed Jun 12 16:32:35 UTC 2024
    - Last Modified: Fri Jun 07 17:57:01 UTC 2024
    - 123.4K bytes
    - Viewed (0)
Back to top