1

Http status 302 is status for temporary redirections. I think we can use this status for my purpose. I google and see someone use 303, Not 302. How about your ideas? Thanks!

LHA
  • 9,398
  • 8
  • 46
  • 85
  • 1
    It shouldn't matter really, but see this question for more info: http://stackoverflow.com/questions/5129076/after-a-post-should-i-do-a-302-or-a-303-redirect – David d C e Freitas Dec 06 '13 at 02:50

1 Answers1

2

When looking for examples or tutorials that show HTTPS redirections with IIS and URL Rewrite, you'll find all variants of redirectType:

When you like clients to use HTTPS the next time, use Permanent. If you're trying the redirection for a while and you're not sure if you want it to be permanent, use Temporary.

Sort of the same question is answered by more people here: https://webmasters.stackexchange.com/questions/22268/when-redirecting-from-http-to-https-in-a-shop-site-which-status-code-should-i-u

Community
  • 1
  • 1
Christiaan Westerbeek
  • 10,619
  • 13
  • 64
  • 89