1XX    통지 : 요청 수신, 처리 계속

2XX    성공 : 요청 접수, 처리 성공

3XX    전송 : 추가 요청

4XX    클라이언트 에러 : 요청에 문법 에러 존재

5XX    서버 에러 : 요청 처리중에 서버 측에서 에러 발생

 

vi httpd.conf

 

ErrorDocument 404 http://1.1.1.1/a/404.htm <=== 익스플로러 브라우져 :인터넷옵션 > 고급 > HTTP 오류메세지 표시 체크하고도 됨

 

or

 

익스플로러 브라우져 : 인터넷옵션 > 고급 > HTTP 오류메세지 표시 체크해제


ErrorDocument 100 "100 Continue"
ErrorDocument 101 "101 Switching Protocols"

 

ErrorDocument 200 "200 OK"
ErrorDocument 201 "201 Created"
ErrorDocument 202 "202 Accepted"
ErrorDocument 203 "203 Non-Authoritative Information"
ErrorDocument 204 "204 No Content"
ErrorDocument 205 "205 Reset Content"
ErrorDocument 206 "206 Partial Content"

 

ErrorDocument 300 "300 Multiple Choices"
ErrorDocument 301 "301 Moved Permanently"
ErrorDocument 302 "302 Found"
ErrorDocument 303 "303 See Other"
ErrorDocument 304 "304 Not Modified"
ErrorDocument 305 "305 Use Proxy"
ErrorDocument 306 "306 Unused"
ErrorDocument 307 "307 Temporary Redirect"

 

ErrorDocument 400 "400 Bad Request"
ErrorDocument 401 "401 Unauthorized"
ErrorDocument 402 "402 Payment Required"
ErrorDocument 403 "403 Forbidden"
ErrorDocument 404 "404 Not Found"
ErrorDocument 405 "405 Method Not Allowed"
ErrorDocument 406 "406 Not Acceptable"
ErrorDocument 407 "407 Proxy Authentication Required"
ErrorDocument 408 "408 Request Timeout"
ErrorDocument 409 "409 Conflict"
ErrorDocument 410 "410 Gone"
ErrorDocument 411 "411 Length Required"
ErrorDocument 412 "412 Precondition Failed"
ErrorDocument 413 "413 Request Entity Too Large"
ErrorDocument 414 "414 Request-URI Too Long"
ErrorDocument 415 "415 Unsupported Media Type"
ErrorDocument 416 "416 Requested Range Not Satisfiable"
ErrorDocument 417 "417 Expectation Failed"

 

ErrorDocument 500 "500 Internal Server Error"
ErrorDocument 501 "501 Not Implemented"
ErrorDocument 502 "502 Bad Gateway"
ErrorDocument 503 "503 Service Unavailable"
ErrorDocument 504 "504 Gateway Timeout"
ErrorDocument 505 "505 HTTP Version Not Supported"

 

+ Recent posts