HTTP 303
Encyclopedia
The HTTP response status code 303 See Other is the correct manner in which to redirect web applications to a new URI, particularly after an HTTP POST has been performed.

This response indicates that the correct response can be found under a different URI and should be retrieved using a GET method. The specified URI is not a substitute reference for the original resource.

This status code should be used with the location
HTTP location
The HTTP Location header is returned in responses from an HTTP server under two circumstances:1. To ask a web browser to load a different web page. It is passed as part of the response by a web server when the requested URI has:* Moved temporarily, or...

 header.

303 See Other is one way of responding to a request for a URI that identifies a real-world object according to Semantic Web
Semantic Web
The Semantic Web is a collaborative movement led by the World Wide Web Consortium that promotes common formats for data on the World Wide Web. By encouraging the inclusion of semantic content in web pages, the Semantic Web aims at converting the current web of unstructured documents into a "web of...

 practice (the other being the use of hash URIs).

Example

Client request:

GET / HTTP/1.1
Host: www.example.com

Server response:

HTTP/1.1 303 See Other
Location: http://example.org/other

See also

  • RFC 2616 (HTTP 1.1)
  • RFC 1945 (HTTP 1.0)
  • Hypertext Transfer Protocol
    Hypertext Transfer Protocol
    The Hypertext Transfer Protocol is a networking protocol for distributed, collaborative, hypermedia information systems. HTTP is the foundation of data communication for the World Wide Web....

  • List of HTTP status codes
  • Post/Redirect/Get
    Post/Redirect/Get
    Post/Redirect/Get is a common design pattern for web developers to help avoid certain duplicate form submissions and allow user agents to behave more intuitively with bookmarks and the refresh button.- Duplicate form submissions :...

The source of this article is wikipedia, the free encyclopedia.  The text of this article is licensed under the GFDL.
 
x
OK