Is it possible to prevent the browser from following redirects when sending XMLHttpRequest-s (i.e. to get the redirect status code back and handle it myself)?

link|improve this question
feedback

2 Answers

up vote 33 down vote accepted

Not according to the W3C standard for the XMLHttpRequest object (emphasis added):

If the response is an HTTP redirect:

If the origin of the URL conveyed by the Location header is same origin with the XMLHttpRequest origin and the redirect does not violate infinite loop precautions, transparently follow the redirect while observing the same-origin request event rules.

They are considering it for the future though:

This specification does not include the following features which are being considered for a future version of this specification:

  • Property to disable following redirects;
link|improve this answer
What is ridiculous is when the transparent redirect involves overwriting some HTTP headers that were set in the original request. Specifically, if the "Accept" header was set to a specific content-type, Firefox fails to include this header when following the redirect (which makes it a tad more difficult to develop fully REST-based web services that use this header... grumble). – ruquay May 26 '11 at 8:47
Some more searching brought me this rather old bug report: bugzilla.mozilla.org/show_bug.cgi?id=401564 – ruquay May 26 '11 at 9:22
feedback

No you there isn't any place in the API exposed by XMLHttpRequest that allows you to override its default behaviour of following a 301 or 302 automatically.

If the client is running IE on windows then you can use WinHTTP instead to set an option to prevent that behaviour but thats a very limiting solution.

link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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