티스토리 수익 글 보기

티스토리 수익 글 보기

Note:“> MAY“> MUST“> MUST NOT“> OPTIONAL“> RECOMMENDED“> REQUIRED“> SHALL“> SHALL NOT“> SHOULD“> SHOULD NOT“> ]> The Hypertext Transfer Protocol Status Code 308 (Permanent Redirect) greenbytes GmbH
Hafenweg 16 MuensterNW48155 Germany julian.reschke@greenbytes.de http://greenbytes.de/tech/webdav/
Applications HTTP redirect status code This document specifies the additional Hypertext Transfer Protocol (HTTP) status code 308 (Permanent Redirect). Distribution of this document is unlimited. Although this is not a work item of the HTTPbis Working Group, comments should be sent to the Hypertext Transfer Protocol (HTTP) mailing list at ietf-http-wg@w3.org, which may be joined by sending a message with subject “subscribe” to ietf-http-wg-request@w3.org. Discussions of the HTTPbis Working Group are archived at . XML versions, latest edits, and the issues list for this document are available from . This is a temporary document for the purpose of tracking the editorial changes made during the AUTH48 (RFC publication) phase.
HTTP defines a set of status codes for the purpose of redirecting a request to a different URI (). The history of these status codes is summarized in , which also classifies the existing status codes into four categories. The first of these categories contains the status codes 301 (Moved Permanently), 302 (Found), and 307 (Temporary Redirect), which can be classified as below: Permanent Temporary Allows changing the request method from POST to GET 301 302 Does not allow changing the request method from POST to GET 307 states that HTTP does not define a permanent variant of status code 307; this specification adds the status code 308, defining this missing variant ().
The key words “MUST”, “MUST NOT”, “REQUIRED”, “SHALL”, “SHALL NOT”, “SHOULD”, “SHOULD NOT”, “RECOMMENDED”, “MAY”, and “OPTIONAL” in this document are to be interpreted as described in .
The 308 (Permanent Redirect) status code indicates that the target resource has been assigned a new permanent URI and any future references to this resource ought to use one of the enclosed URIs. Clients with link editing capabilities ought to automatically re-link references to the effective request URI () to one or more of the new references sent by the server, where possible. The server &SHOULD; generate a Location header field () in the response containing a preferred URI reference for the new permanent URI. The user agent &MAY; use the Location field value for automatic redirection. The server’s response payload usually contains a short hypertext note with a hyperlink to the new URI(s). A 308 response is cacheable by default; i.e., unless otherwise indicated by the method definition or explicit cache controls (see ). &Note; This status code is similar to 301 (Moved Permanently) (), except that it does not allow changing the request method from POST to GET.
requires recipients to treat unknown 3xx status codes the same way as status code 300 Multiple Choices (). Thus, servers will not be able to rely on automatic redirection happening similar to status codes 301, 302, or 307. Therefore, initial use of status code 308 will be restricted to cases where the server has sufficient confidence in the client’s understanding the new code or when a fallback to the semantics of status code 300 is not problematic. Server implementers are advised not to vary the status code based on characteristics of the request, such as the User-Agent header field (“User-Agent Sniffing”) — doing so usually results in code that is both hard to maintain and hard to debug and would also require special attention to caching (i.e., setting a “Vary” response header field, as defined in ). Note that many existing HTML-based user agents will emulate a refresh when encountering an HTML <meta> refresh directive (). This can be used as another fallback. For example:
Client request: GET / HTTP/1.1 Host: example.com
Server response: HTTP/1.1 308 Permanent Redirect Content-Type: text/html; charset=UTF-8 Location: http://example.com/new Content-Length: <!DOCTYPE HTML PUBLIC “-//W3C//DTD HTML 4.01//EN” “http://www.w3.org/TR/html4/strict.dtd”> <html> <head> <title>Permanent Redirect</title> <meta http-equiv=”refresh” content=”0; url=http://example.com/new”> </head> <body> <p> The document has been moved to <a href=”http://example.com/new” >http://example.com/new</a>. </p> </body> </html>
All security considerations that apply to HTTP redirects apply to the 308 status code as well (see ).
The registration below has been added to the “Hypertext Transfer Protocol (HTTP) Status Code Registry” (defined in and located at ): Value Description Reference 308 Permanent Redirect of this specification
The definition for the new status code 308 reuses text from the HTTP/1.1 definitions of status codes 301 and 307. Furthermore, thanks to Ben Campbell, Cyrus Daboo, Eran Hammer-Lahav, Bjoern Hoehrmann, Subramanian Moonesamy, Peter Saint-Andre, and Robert Sparks for feedback on this document.
Key words for use in RFCs to Indicate Requirement Levels Harvard University
sob@harvard.edu
Uniform Resource Identifier (URI): Generic Syntax World Wide Web Consortium
timbl@w3.org http://www.w3.org/People/Berners-Lee/
Day Software
fielding@gbiv.com http://roy.gbiv.com/
Adobe Systems Incorporated
LMM@acm.org http://larry.masinter.net/
Hypertext Transfer Protocol (HTTP/1.1): Message Syntax and Routing Adobe Systems Incorporated
fielding@gbiv.com
greenbytes GmbH
julian.reschke@greenbytes.de
Hypertext Transfer Protocol (HTTP/1.1): Semantics and Content Adobe Systems Incorporated
fielding@gbiv.com
greenbytes GmbH
julian.reschke@greenbytes.de
Hypertext Transfer Protocol (HTTP/1.1): Caching Adobe Systems Incorporated
fielding@gbiv.com
Rackspace
mnot@mnot.net
greenbytes GmbH
julian.reschke@greenbytes.de
HTML 4.01 Specification Latest version available at .