HTTP Status Lookup

HTTP 상태 코드와 의미 검색

데이터가 브라우저 밖으로 나가지 않습니다.
CodeStatusClassDescription
100Continue1xx - 정보The server has received the request headers and the client should proceed to send the request body.
101Switching Protocols1xx - 정보The requester has asked the server to switch protocols.
102Processing1xx - 정보The server has received and is processing the request, but no response is available yet.
103Early Hints1xx - 정보Used to return some response headers before the final HTTP message.
200OK2xx - 성공Standard response for successful HTTP requests.
201Created2xx - 성공The request has been fulfilled, resulting in the creation of a new resource.
202Accepted2xx - 성공The request has been accepted for processing, but the processing has not been completed.
203Non-Authoritative Information2xx - 성공The server is a transforming proxy that received a 200 from the origin.
204No Content2xx - 성공The server successfully processed the request and is not returning any content.
205Reset Content2xx - 성공The server successfully processed the request, asks that the requester reset its document view.
206Partial Content2xx - 성공The server is delivering only part of the resource due to a range header sent by the client.
301Moved Permanently3xx - 리다이렉션This and all future requests should be directed to the given URI.
302Found3xx - 리다이렉션Tells the client to look at another URL.
303See Other3xx - 리다이렉션The response to the request can be found under another URI using the GET method.
304Not Modified3xx - 리다이렉션Indicates that the resource has not been modified since the last request.
307Temporary Redirect3xx - 리다이렉션The request should be repeated with another URI; the method should not be changed.
308Permanent Redirect3xx - 리다이렉션The request and all future requests should be repeated using another URI.
400Bad Request4xx - 클라이언트 오류The server cannot or will not process the request due to an apparent client error.
401Unauthorized4xx - 클라이언트 오류Authentication is required and has failed or has not yet been provided.
402Payment Required4xx - 클라이언트 오류Reserved for future use. The original intention was that this code might be used for digital payment systems.
403Forbidden4xx - 클라이언트 오류The request contained valid data and was understood by the server, but the server is refusing action.
404Not Found4xx - 클라이언트 오류The requested resource could not be found but may be available in the future.
405Method Not Allowed4xx - 클라이언트 오류A request method is not supported for the requested resource.
406Not Acceptable4xx - 클라이언트 오류The requested resource is capable of generating only content not acceptable according to the Accept headers.
408Request Timeout4xx - 클라이언트 오류The server timed out waiting for the request.
409Conflict4xx - 클라이언트 오류Indicates that the request could not be processed because of conflict in the current state of the resource.
410Gone4xx - 클라이언트 오류Indicates that the resource requested is no longer available and will not be available again.
411Length Required4xx - 클라이언트 오류The request did not specify the length of its content, which is required by the requested resource.
413Payload Too Large4xx - 클라이언트 오류The request is larger than the server is willing or able to process.
414URI Too Long4xx - 클라이언트 오류The URI provided was too long for the server to process.
415Unsupported Media Type4xx - 클라이언트 오류The request entity has a media type which the server or resource does not support.
416Range Not Satisfiable4xx - 클라이언트 오류The client has asked for a portion of the file, but the server cannot supply that portion.
418I'm a teapot4xx - 클라이언트 오류The server refuses the attempt to brew coffee with a teapot.
422Unprocessable Content4xx - 클라이언트 오류The request was well-formed but was unable to be followed due to semantic errors.
423Locked4xx - 클라이언트 오류The resource that is being accessed is locked.
429Too Many Requests4xx - 클라이언트 오류The user has sent too many requests in a given amount of time.
451Unavailable For Legal Reasons4xx - 클라이언트 오류A server operator has received a legal demand to deny access to a resource.
500Internal Server Error5xx - 서버 오류A generic error message, given when an unexpected condition was encountered.
501Not Implemented5xx - 서버 오류The server either does not recognize the request method, or it lacks the ability to fulfill the request.
502Bad Gateway5xx - 서버 오류The server was acting as a gateway or proxy and received an invalid response from the upstream server.
503Service Unavailable5xx - 서버 오류The server cannot handle the request (overloaded or down for maintenance).
504Gateway Timeout5xx - 서버 오류The server was acting as a gateway or proxy and did not receive a timely response from the upstream server.
505HTTP Version Not Supported5xx - 서버 오류The server does not support the HTTP version used in the request.