HTTP 파일 서버를 사용하여 누락된 파일에 대한 404 상태 로그
http.FileServer를 사용하여 파일을 제공할 때 존재하지 않는 파일에 대한 요청이 반환될 수 있습니다. 서버 콘솔에 기록되지 않고 404 상태 코드. 이로 인해 누락된 파일을 추적하고 문제를 해결하는 것이 어려울 수 있습니다.
해결 방법
HTTP 404 오류를 기록하려면 http.StripPrefix()에서 반환된 처리기의 기능을 강화하세요. 및 http.FileServer():
래핑된 핸들러는 원래 핸들러를 호출하고 응답을 받은 후 HTTP 404 이상의 오류 코드를 기록합니다. 아래 예제 코드는 완전한 구현을 보여줍니다.
<code class="go">type StatusRespWr struct { http.ResponseWriter status int } func (w *StatusRespWr) WriteHeader(status int) { w.status = status w.ResponseWriter.WriteHeader(status) } func wrapHandler(h http.Handler) http.HandlerFunc { return func(w http.ResponseWriter, r *http.Request) { srw := &StatusRespWr{ResponseWriter: w} h.ServeHTTP(srw, r) if srw.status >= 400 { log.Printf("Error status code: %d when serving path: %s", srw.status, r.RequestURI) } } } func main() { http.HandleFunc("/o/", wrapHandler( http.StripPrefix("/o", http.FileServer(http.Dir("/test"))))) panic(http.ListenAndServe(":8181", nil)) }</code>
존재하지 않는 파일이 요청되면 래핑된 핸들러는 다음 오류를 기록합니다.
2015/12/01 11:47:40 Error status code: 404 when serving path: /o/sub/b.txt2
위 내용은 HTTP 파일 서버를 사용할 때 404 오류를 기록하는 방법은 무엇입니까?의 상세 내용입니다. 자세한 내용은 PHP 중국어 웹사이트의 기타 관련 기사를 참조하세요!