3

I'm curious what status code I should be using when redirecting a mobile browser that hits domain.com and is redirected to m.domain.com. I feel like a 301 (Moved Permanently) isn't quite right, but none of the others sound appropriate either.

adam
  • 133
  • 4

2 Answers2

1

I would use 303 See Other myself, however 300 Multiple Choices (with a properly-formed body describing the various choices) might also be appropriate (although I've never used this myself so have no knowledge of how well-supported it is).

Kromey
  • 3,641
  • 4
  • 25
  • 30
0

I'd go 302 which is pretty much the default redirect.

dmourati
  • 25,540
  • 2
  • 42
  • 72