英文:
How can I solve problem of 404 page display?
问题
我有一个包含404错误页面的主页函数:
// 处理主页
func home(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("它还活着吗?"))
// 创建404页面
if r.URL.Path != "/" {
http.NotFound(w, r)
return
}
}
但是当我访问无法访问的页面(例如'127.0.0.1:4000/nothing'),我会同时得到两部分内容 - "它还活着吗?"和"404页面未找到"的消息:
那么,我该怎么解决这个问题?
英文:
I have the function for the main page, which contains 'if' part for the 404 error page:
// Обработчик главной страницы
func home(w http.ResponseWriter, r *http.Request) {
w.Write([]byte("Is it alive?"))
// Создание страницы 404
if r.URL.Path != "/" {
http.NotFound(w, r)
return
}
}
But when I go to the unable page ('127.0.0.1:4000/nothing' for example), I get back both parts - and message "is it alive?" and "404 page not found":
So, what can I do to solve it?
答案1
得分: 1
func home(w http.ResponseWriter, r *http.Request) {
// 创建404页面
if r.URL.Path != "/" {
http.NotFound(w, r)
return
}
w.Write([]byte("它还活着吗?"))
}
英文:
func home(w http.ResponseWriter, r *http.Request) {
// Создание страницы 404
if r.URL.Path != "/" {
http.NotFound(w, r)
return
}
w.Write([]byte("Is it alive?"))
}
通过集体智慧和协作来改善编程学习和解决问题的方式。致力于成为全球开发者共同参与的知识库,让每个人都能够通过互相帮助和分享经验来进步。
评论