package infini import "net/http" func NotFound(w http.ResponseWriter, r *http.Request) { w.WriteHeader(http.StatusNotFound) http.Redirect(w, r, "/", http.StatusSeeOther) return }