I want to test a site with my Firefox ignoring Location: headers like this example in PHP.

header('Location: another-page.php');

Is there a plugin available to do this, or any other method?

Would my best bet be surfing the site with Lynx? Does Lynx ignore them?

Thanks

link|improve this question

feedback

1 Answer

up vote 2 down vote accepted

You could try bringing up the pages with cURL.

It is a command line application that is invoked via:

curl http://url

cURL does not follow Location: headers by default.

link|improve this answer
Thanks, forgot about cURL. :) – alex May 7 '10 at 0:09
feedback

Your Answer

 
or
required, but never shown

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