[WEB] HTTP STATUS CODE

개발자 | 2013. 4. 11. 23:14

HTTP Status codes

  • 1xx : Informational
  • 2xx : Success
  • 3xx : Redirection
    • 300 : Multiple choices, 최근에 옮겨진 데이터를 요청
  • 4xx : Client Error
    • 400 : Bad request, 클라이언트의 잘못된 요청으로 처리할 없음.
    • 403 : Forbidden, 접근이 거부된 문서를 요청함.
    • 404 : Not found, 문서를 찾을 없음.
  • 5xx : Server Error
    • 500 : Internal server error, 내부 서버 오류 (잘못된 스크립트 실행 )
    • 501 : Not implemented, 클라이언트에서 서버가 수행할 없는 행동을 요구함
    • 502 : Bad gateway, 서버의 과부하 상태
    • 503 : Service unavailable, 외부 서비스가 죽었거나 현재 멈춤 상태
    • 504 : Gateway timeout
    • 505 : HTTP version not supported
,