잠시만 기다려 주세요

     '이태원 150명 넘게 죽은 핼러윈 참사.. 오세훈 탄핵.. 윤석열 탄핵.... 행안부 장관 이상민은 사람이냐... 말만 하면 책임 회피..'
전체검색 :  
이번주 로또 및 연금번호 발생!!   |  HOME   |  여기는?   |  바다물때표   |  알림 (16)  |  여러가지 팁 (1056)  |  추천 및 재미 (152)  |  자료실 (22)  |  
시사, 이슈, 칼럼, 평론, 비평 (602)  |  끄적거림 (129)  |  문예 창작 (705)  |  바람 따라 (69)  |  시나리오 (760)  |  드라마 대본 (248)  |  
살인!


    golang

golang - 404 not found http.NotFound
이 름 : 바다아이   |   조회수 : 9161         짧은 주소 : https://www.bada-ie.com/su/?861591781116
    http.HandleFunc("/", func(w http.ResponseWriter, req *http.Request) {
        if req.URL.Path != "/" {
            http.NotFound(w, req)
            return
        }
        정상 메인 함수
    })

이런 식으로 404 페이지 처리 하시면 됩니다.
필요하시면 다른 함수 하나 만드셔서 404 처리 하셔도 되겠네요...

아래는 간단한 예제입니다.


package main

import (
    "fmt"
    "net/http"
)

func main() {
    http.HandleFunc("/", homeHandler)
    http.HandleFunc("/smth/", smthHandler)
    http.ListenAndServe(":80", nil)
}

func homeHandler(w http.ResponseWriter, r *http.Request) {
    if r.URL.Path != "/" {
        errorHandler(w, r, http.StatusNotFound)
        return
    }
    fmt.Fprint(w, "welcome home")
}

func smthHandler(w http.ResponseWriter, r *http.Request) {
    if r.URL.Path != "/smth/" {
        errorHandler(w, r, http.StatusNotFound)
        return
    }
    fmt.Fprint(w, "welcome smth")
}

func errorHandler(w http.ResponseWriter, r *http.Request, status int) {
    w.WriteHeader(status)
    if status == http.StatusNotFound {
        fmt.Fprint(w, "custom 404")
    }
}


출처 : https://stackoverflow.com/questions/9996767/showing-custom-404-error-page-with-standard-http-package
| |





      1 page / 6 page
번 호 카테고리 제 목 이름 조회수
179 golang golang , ... 바다아이 1725
178 golang golang , map . 바다아이 1326
177 golang Golang (, , data ) , ... 바다아이 1337
176 golang golang sort ... 바다아이 1569
175 golang golang html.EscapeString html.UnescapeString input value ... 바다아이 1695
174 golang golang go.mod go.sum . GOPATH SRC not module, 1.16 . 바다아이 4969
173 golang go 1.16 ... is not in GOROOT.. GOPATH .... . 바다아이 5867
172 golang , String Formatting 바다아이 7504
171 golang rand.Intn , random, , . 바다아이 6967
170 golang golang ... 바다아이 10058
169 golang golang gopath, goroot .. golang 바다아이 7636
168 golang golang ... Force download file example 바다아이 9428
167 golang golang , , cpu, memory, disk 바다아이 10723
166 golang golang , ... GOOS, GOARCH 바다아이 8497
165 golang golang checkbox ... 바다아이 8249
164 golang golang , , http .... 바다아이 8022
163 golang golang nil , nil , nil ... 바다아이 8369
162 golang 2 golang, go , .... golang .... 바다아이 11237
161 golang golang postgresql, mysql, mariadb ... ` Grave () .. .. 바다아이 8561
160 golang golang postgresql mysql, mariadb scan , null .. 바다아이 8703
159 golang golang , iconv 바다아이 11493
158 golang golang quote escape, unquote 바다아이 8899
157 golang golang , http errorLog , , ... 바다아이 9002
156 golang golang interface , 바다아이 8476
155 golang golang struct .... 바다아이 9146
154 golang golang map map , 바다아이 8672
153 golang golang map .... .... 바다아이 8191
152 golang golang slice copy 바다아이 8289
151 golang golang goto 바다아이 9150
150 golang golang slice sort , int, string, float64 바다아이 8628
| |









Copyright ⓒ 2001.12. bada-ie.com. All rights reserved.
이 사이트는 리눅스에서 firefox 기준으로 작성되었습니다. 기타 브라우저에서는 다르게 보일 수 있습니다.
[ Ubuntu + GoLang + PostgreSQL + Mariadb ]
서버위치 : 오라클 클라우드 춘천  실행시간 : 0.05869
to webmaster... gogo sea. gogo sea.