diff options
| author | Anhgelus Morhtuuzh <anhgelus.morhtuuzh@proton.me> | 2024-11-10 15:49:27 +0100 |
|---|---|---|
| committer | Anhgelus Morhtuuzh <anhgelus.morhtuuzh@proton.me> | 2024-11-10 15:49:27 +0100 |
| commit | 3e2938791e23c4ceee1fc8093b03ccd6658e4a97 (patch) | |
| tree | edbaba5281be92a09d0e8a36da2ee5aab57cb4a6 /main.go | |
| parent | c6b6252270e94d4512884187135df1c1a20f5734 (diff) | |
feat(handle): error 404 by redirecting to /
Diffstat (limited to 'main.go')
| -rw-r--r-- | main.go | 5 |
1 files changed, 5 insertions, 0 deletions
@@ -6,6 +6,7 @@ import ( "flag" "github.com/anhgelus/golatt" "log/slog" + "net/http" "os" ) @@ -58,5 +59,9 @@ func main() { g.NewTemplate("index", "/", cfg.Person.Name, "", "", &cfg).Handle() g.NewTemplate("credits", "/credits", "Credits", "", "", &cfg).Handle() + g.NotFoundHandler = func(w http.ResponseWriter, r *http.Request) { + http.Redirect(w, r, "/", http.StatusTemporaryRedirect) + } + g.StartServer(":80") } |
