[w3m-dev 03985] Re: support for 307 Temporary Redirect
Hironori SAKAMOTO <[email protected]>
| Newsgroups | gmane.comp.web.w3m.devel |
|---|---|
| Message-ID | <[email protected]> |
> From: yamada <[email protected]> > HTTP/1.1 307 Temporary Redirect > w3m > http://www.w3.org/Protocols/rfc2616/rfc2616-sec10.html#sec10.3.8 w3m (?) HTTP/1.1 # HTTP/1.0 302 The temporary URI SHOULD be given by the Location field in the response. Unless the request method was HEAD, the entity of the response SHOULD contain a short hypertext note with a hyperlink to the new URI(s) , since many pre-HTTP/1.1 user agents do not understand the 307 status. Therefore, the note SHOULD contain the information necessary for a user to repeat the original request on the new URI. file.c if (http_response_code >= 301 && http_response_code <= 303 if (((http_response_code >= 301 && http_response_code <= 303) || http_response_code == 307) ----------------------------------- <[email protected]> http://www2u.biglobe.ne.jp/~hsaka/