views:

22

answers:

1

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

+1  A: 

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.

George Edison
Thanks, forgot about cURL. :)
alex