mirror of
https://github.com/rramiachraf/dumb.git
synced 2025-04-03 21:07:36 +03:00
feat: add custom error page for unmatched routes
This commit is contained in:
parent
3df6bdbf22
commit
3f5a2c5041
1 changed files with 8 additions and 0 deletions
8
main.go
8
main.go
|
@ -30,6 +30,14 @@ func main() {
|
|||
r.HandleFunc("/{id}-lyrics", lyricsHandler)
|
||||
r.HandleFunc("/images/{filename}.{ext}", proxyHandler)
|
||||
r.PathPrefix("/static/").Handler(http.StripPrefix("/static/", http.FileServer(http.Dir("static"))))
|
||||
r.NotFoundHandler = http.HandlerFunc(func(w http.ResponseWriter, r *http.Request) {
|
||||
w.WriteHeader(http.StatusNotFound)
|
||||
render("error", w, map[string]string{
|
||||
"Status": "404",
|
||||
"Error": "page not found",
|
||||
})
|
||||
|
||||
})
|
||||
|
||||
server := &http.Server{
|
||||
Handler: r,
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue