I need to temporarily disable 302 redirects in Firefox. How can I do this? I tried going to tools>options>advanced>general>checkmark warn me when sites try to redirect or reload the page, but that didn't work, 302 redirects are still followed. Is there anywhere in about:config that I can disable 302 redirects?
Tell me more
×
Super User is a question and answer site for
computer enthusiasts and power users. It's 100% free, no registration required.
|
call about:config and set network.http.redirection-limit to 0. But you won't be able to access the moved page. |
|||
|
|
Not specific to Firefox, but you could use the Fiddler debugging proxy, and set a breakpoint on the response. Or use a script like (I guess): oSession.oResponse.headers.Remove("Location");
|
|||
|
|
