본문 바로가기
Web

HTTP STATUS CODE

by 모닝위즈 2023. 5. 10.
반응형
Status-Code    =
          | "100"  =>  Continue
          | "101"  =>  Switching Protocols
          
          | "200"  =>  OK  ; 신난다. 
          | "201"  =>  Created
          | "202"  =>  Accepted
          | "203"  =>  Non-Authoritative Information
          | "204"  =>  No Content ; HTTP Response body 가 없음.
          | "205"  =>  Reset Content
          | "206"  =>  Partial Content
          
          | "300"  =>  Multiple Choices
          | "301"  =>  Moved Permanently
          | "302"  =>  Found       ; 리다이렉트~
          | "303"  =>  See Other
          | "304"  =>  Not Modified
          | "305"  =>  Use Proxy
          | "307"  =>  Temporary Redirect
          
          | "400"  =>  Bad Request ; 요청이 문법에 맞지 않음 ; 방화벽에 확인해봣숴?
          | "401"  =>  Unauthorized
          | "402"  =>  Payment Required
          | "403"  =>  Forbidden   ;  권한이 없음. 나는 chmod 777가는 멍충이
          | "404"  =>  Not Found   ; 없어요. 아뇨~ 원래 없어요.
          | "405"  =>  Method Not Allowed  ; GET/POST 등 요청 method가 잘못이네
          | "406"  =>  Not Acceptable 
          | "407"  =>  Proxy Authentication Required
          | "408"  =>  Request Time-out
          | "409"  =>  Conflict
          | "410"  =>  Gone
          | "411"  =>  Length Required
          | "412"  =>  Precondition Failed
          | "413"  =>  Request Entity Too Large
          | "414"  =>  Request-URI Too Large
          | "415"  =>  Unsupported Media Type
          | "416"  =>  Requested range not satisfiable
          | "417"  =>  Expectation Failed
          
          | "500"  =>  Internal Server Error ; 아 개발오류났다.. 
          | "501"  =>  Not Implemented
          | "502"  =>  Bad Gateway ; 아 서버가 맛이갓나.. 방화벽인가.. DNS 바꿨나..
          | "503"  =>  Service Unavailable ; 서버 죽었닼ㅋㅋ  
          | "504"  =>  Gateway Time-out ; 아나 엔진엑스 타임아웃걸렸다 
          | "505"  =>  HTTP Version not supported

 

5XX 대역의 오류만 보면 이상하게 트오세가 생각이 나는 이유는..

https://bbs.ruliweb.com/community/board/300779/read/41841003

 

댓글