Is it bad to use 301, 302 redirects after processing a form submission. Or is it only advised to use for pages that have "really been moved". I can show users nice urls if I use redirects.

Please advice.

Thanks

link|improve this question

feedback

2 Answers

up vote 4 down vote accepted

No, it is not bad. It's actually recommended best practice and called PRG (POST, Redirect, GET). This prevents users from seeing the nasty "Do you really want to send this form again?" message.

It's recommended that you send 303 (See Other) or 302 (Found). 301 is saying that this resource has been relocated permanently.

link|improve this answer
what about using 303 . can i safely use 303? – robert May 26 '11 at 11:44
@robert Absolutely. It's actually recommended by the specs (according to the Wikipedia article, havent read the actual spec in a while). – alexn May 26 '11 at 11:45
feedback

302 Found sounds valid, if you are redirecting the user to the newly created object. However, be aware that some network security scanners (as BlueCoat) may wish to block such redirections.

link|improve this answer
will googlebot follow 302 ? – robert May 26 '11 at 11:45
@robert Yes it will. However, it will never submit any forms. – alexn May 26 '11 at 11:46
feedback

Your Answer

 
or
required, but never shown

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