일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | 5 | 6 | 7 |
8 | 9 | 10 | 11 | 12 | 13 | 14 |
15 | 16 | 17 | 18 | 19 | 20 | 21 |
22 | 23 | 24 | 25 | 26 | 27 | 28 |
29 | 30 | 31 |
- 톰캣
- RADIO
- HTML5
- SSL
- maven
- checbox
- 웹 플랫폼 설치 관리자
- JSTL
- 한글
- DB
- html
- 날짜
- 오라클
- json
- Oracle
- 문자열
- exception
- 전자정부 표준프레임워크
- php
- 스크립트
- MYSQL
- spring form tag
- 이클립스
- @RequestBody
- null
- switch
- java
- jquery
- 네이버스마트 에디터
- 호환성
- Today
- Total
개인적인 정리
HTTP 응답코드(HTTP 상태코드) 본문
HTTP 상태 코드의 첫 번째 자리는 요청이 어떻게 처리되었는지 나타내주는 매우 일반적인 코드로 1부터 5를 사용한다.
1xx : 정보(Information)
- 이 응답코드들은 HTTP 클라리언트와 서버 사이에서 연결 협상을 할 때만 사용
2xx : 성공(Successful)
3xx : 리다이렉션(Redirection)
4xx : 클라이언트 오류(Client Error)
5xx : 서버오류(Server Error)
위키에는
1xx (정보): 요청을 받았으며 프로세스를 계속한다
2xx (성공): 요청을 성공적으로 받았으며 인식했고 수용하였다
3xx (리다이렉션): 요청 완료를 위해 추가 작업 조치가 필요하다
4xx (클라이언트 오류): 요청의 문법이 잘못되었거나 요청을 처리할 수 없다
5xx (서버 오류): 서버가 명백히 유효한 요청에 대해 충족을 실패했다
https://ko.wikipedia.org/wiki/HTTP_%EC%83%81%ED%83%9C_%EC%BD%94%EB%93%9C
정보 응답(조건부 응답)
100 Continue
101 Switching Protocol
102 Processing (WebDAV)
103 Early Hints
성공 응답
200 OK
201 Created
202 Accepted
203 Non-Authoritative Information
204 No Content
205 Reset Content
206 Partial Content
207 Multi-Status (WebDAV)
208 Multi-Status (WebDAV)
226 IM Used (HTTP Delta encoding)
리다이렉션 메시지
300 Multiple Choice
301 Moved Permanently
302 Found
303 See Other
304 Not Modified
305 Use Proxy
306 unused
307 Temporary Redirect
308 Permanent Redirect
클라이언트 에러 응답
400 Bad Request
401 Unauthorized
402 Payment Required
403 Forbidden
404 Not Found
405 Method Not Allowed
406 Not Acceptable
407 Proxy Authentication Required
408 Request Timeout
409 Conflict
410 Gone
411 Length Required
412 Precondition Failed
413 Payload Too Large
414 URI Too Long
415 Unsupported Media Type
416 Requested Range Not Satisfiable
417 Expectation Failed
418 I'm a teapot
421 Misdirected Request
422 Unprocessable Entity (WebDAV)
423 Locked (WebDAV)
424 Failed Dependency (WebDAV)
426 Upgrade Required
428 Precondition Required
429 Too Many Requests
431 Request Header Fields Too Large
451 Unavailable For Legal Reasons
500 Internal Server Error
501 Not Implemented
502 Bad Gateway
503 Service Unavailable
504 Gateway Timeout
505 HTTP Version Not Supported
506 Variant Also Negotiates
507 Insufficient Storage
508 Loop Detected (WebDAV)
510 Not Extended
511 Network Authentication Required
511 상태 코드는 클라이언트가 네트워크 액세스를 얻기 위해 인증을 받아야 할 필요가 있음을 나타냅니다.
520(Unknown Error, 알 수 없음)
598(네트워크 읽기 시간초과 오류, 알 수 없음)
599(네트워크 연결 시간초과 오류, 알 수 없음)
자세한 내용은 아래 URL을 참고한다.
https://developer.mozilla.org/ko/docs/Web/HTTP/Status
https://ko.wikipedia.org/wiki/HTTP_%EC%83%81%ED%83%9C_%EC%BD%94%EB%93%9C
'HTML & CSS' 카테고리의 다른 글
backgroundcolor 없애기 (0) | 2019.05.21 |
---|---|
이미지 엑박 대신 기본이미지 (0) | 2019.05.03 |
ie에서 display:inline-block이 먹지 않을 때 (0) | 2017.03.14 |
브라우저내에서 화면캡쳐 html2canvas (0) | 2017.02.13 |
Uncaught DOMException: Failed to execute 'toDataURL' on 'HTMLCanvasElement': Tainted canvases may not be exported. (0) | 2017.02.13 |
툴팁 css (0) | 2016.12.19 |
[css]이미지 리사이징, 화면(영역)보다 이미지가 클 때 (0) | 2016.12.11 |
미디어 쿼리 기본 분기 (0) | 2016.12.05 |