Redirect rule status code
I am redirecting based on user-agent, similar to redirects for mobile domain. I'm not a web dev, but I thought
300 Multiple Choices
would make sense, but I can't select it (not an option). Is there a way to force it to be?2 Replies
You shouldn't use 300 as a redirect code
You'll want:
* https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/301
* https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/302
* https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/307
* or https://developer.mozilla.org/en-US/docs/Web/HTTP/Status/308
Mozilla docs give a good overview of what each one mean so you can pick appropriately
Hmm, but I'm sending them different places depending on the user agent...
ig 307 is the next best