vote up 2 vote down star

Some article I read once said that it means jumping (from one URI to another), but I detected this "302" even when there was actually no jumping at all!

flag

40% accept rate
1  
Pay close attention: example.com example.com and example.com are logically-distinct, and a site wishing to be accessed via a single URL may redirect from one to another in order to achieve this. Of course, 302 redirects are a poor choice for this... but you may well have seen similarly subtle variations. – Shog9 Jun 10 at 0:18
Sorry, all my knowledge of HTTP error codes come from here: thinkgeek.com/tshirts-apparel/womens/… (doht! 403 again) – kenj0418 Jun 10 at 0:25

9 Answers

vote up 4 vote down

It is simply a temporary redirection. I have no knowledge of this "jumping" thing you are talking about. Web browsers cannot jump, for one thing they have no legs.

link|flag
vote up 2 vote down

There might be some good information on this here in the wc3.org documentation.

link|flag
vote up 2 vote down

As per the http status code definitions a 302 indicates a (temporary) redirect. "The requested resource resides temporarily under a different URI"

link|flag
vote up 2 vote down

A 302 redirect means that the page was temporarily moved, while a 301 means that it was permanently moved.

301s are good for SEO value, while 302s aren't because 301s instruct clients to forget the value of the original URL, while the 302 keeps the value of the original and can thus potentially reduce the value by creating two, logically-distinct URLs that each produce the same content (search engines view them as distinct duplicates rather than a single resource with two names).

link|flag
vote up 1 vote down

From Wikipedia:

The HTTP response status code 302 Found is the most common way of performing a redirection. It is an example of industrial practice contradicting the standard.

link|flag
vote up 0 vote down

HTTP code 302 is for redirection see http://en.wikipedia.org/wiki/HTTP_302.

It tells the browse reading a page to go somewhere else and load another page. Its usage is very common.

link|flag
vote up 0 vote down

302 is a response indicating change of resource location - "Found".

The url where the resource should be now located should be in the response 'Location' header.

The "jump" should be done by the requesting client (make a new request to the resource url in the response Location header field).

link|flag
vote up 0 vote down

A simple way of looking at HTTP 301 vs. 302 redirects is:

Suppose you have a bookmark to "http://sample.com/sample". You use a browser to go there.

A 302 redirect to a different URL at this point would mean that you should keep your bookmark to "http://sample.com/sample". This is because the destination URL may change in the future.

A 301 redirect to a different URL would mean that your bookmark should change to point to the new URL as it is a permanent redirect.

link|flag
vote up 0 vote down

From rfc 2616 (the Hypertext transfer protocol specification):

10.3.3 302 Found

   The requested resource resides temporarily under a different URI.
   Since the redirection might be altered on occasion, the client SHOULD
   continue to use the Request-URI for future requests.  This response
   is only cacheable if indicated by a Cache-Control or Expires header
   field.

   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).

Source:

http://www.ietf.org/rfc/rfc2616.txt

link|flag

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.