| 1 |
|
==HTTP Response Status Code Reference== |
| 2 |
|
For use with ValExtLinks script (http://wiki.oni2.net/ValExtLinks). |
| 3 |
< |
Only codes encountered so far by ValExtLinks are listed here. |
| 3 |
> |
Only codes understood by ValExtLinks are listed here. |
| 4 |
|
Source: https://en.wikipedia.org/wiki/List_of_HTTP_status_codes |
| 5 |
|
|
| 6 |
|
|
| 20 |
|
302 Found |
| 21 |
|
This is an example of industry practice contradicting the standard. The HTTP/1.0 specification required the client to perform a temporary redirect (the original describing phrase was "Moved Temporarily"), but popular browsers implemented 302 with the functionality of a 303 See Other. Therefore, HTTP/1.1 added status codes 303 and 307 to distinguish between the two behaviors. However, some Web applications and frameworks use the 302 status code as if it were the 303. |
| 22 |
|
|
| 23 |
+ |
303 See Other |
| 24 |
+ |
The response to the request can be found under another URI using a GET method. |
| 25 |
+ |
|
| 26 |
|
307 Temporary Redirect |
| 27 |
|
The request should be repeated with another URI; however, future requests should still use the original URI. |
| 28 |
|
|
| 29 |
+ |
308 Permanent Redirect |
| 30 |
+ |
The request and all future requests should be repeated using another URI. |
| 31 |
+ |
|
| 32 |
|
|
| 33 |
|
--4xx: Client Errors-- |
| 34 |
|
The 4xx class of status codes is intended for situations in which the client seems to have erred. |