What does HTTP/1.1 302 mean exactly?

omg picture omg · Jun 10, 2009 · Viewed 416.5k times · Source

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!

Answer

CodeMonkey1313 picture CodeMonkey1313 · Jun 10, 2009

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