본문 바로가기

개발

List of HTTP status codes


HTTP Status codes

가장 많이 확인하는 코드이지만, 기억력 감소는 어쩔 수 없다. ㅡㅡ;
복기하자~!

1xx Informational

  • 100 : Continue
  • 101 : Switching protocols
  • 102 Processing

2xx Success

  • 200 : OK, 에러없이 전송 성공
  • 201 : Created, POST 명령 실행 및 성공
  • 202 : Accepted, 서버가 클라이언트 명령을 받음
  • 203 : Non-authoritative information, 서버가 클라이언트 요구 중 일부 만 전송
  • 204 : No content, 클라언트 요구을 처리했으나 전송할 데이터가 없음
  • 205 : Reset content
  • 206 : Partial content
  • 207 Multi-Status (WebDAV) (RFC 4918)

 3xx Redirection

  • 300 : Multiple choices, 최근에 옮겨진 데이터를 요청
  • 301 : Moved permanently, 요구한 데이터를 변경된 임시 URL에서 찾았음
  • 302 : Moved temporarily, 요구한 데이터가 변경된 URL에 있음을 명시
  • 303 : See other, 요구한 데이터를 변경하지 않았기 때문에 문제가 있음
  • 304 : Not modified
  • 305 : Use proxy(since HTTP/1.1)
  • 306 : Switch Proxy
  • 307 : Temporary Redirect (since HTTP/1.1)

4xx Client Error

  • 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 : Request entity too large,
  • 414 : Request-URI too long, URL이 너무 김
  • 415 : Unsupported media type
  • 416 : Requested Range Not Satisfiable
  • 417 : Expectation Failed
  • 418 : I'm a teapot
  • 422 : Unprocessable Entity (WebDAV) (RFC 4918)
  • 423 : Locked (WebDAV) (RFC 4918)
  • 424 : Failed Dependency (WebDAV) (RFC 4918)
  • 425 : Unordered Collection (RFC 3648)
  • 426 : Upgrade Required (RFC 2817)
  • 444 : No Response
  • 449 : Retry With
  • 450 : Blocked by Windows Parental Controls
  • 499 : Client Closed Request

5xx Server Error

  • 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 (RFC 2295)
  • 507 : Insufficient Storage (WebDAV) (RFC 4918)
  • 509 : Bandwidth Limit Exceeded (Apache bw/limited extension)
  • 510 : Not Extended (RFC 2774)

 출처 : http://en.wikipedia.org/wiki/List_of_HTTP_status_codes