如何测试我的浏览器忽略位置标头?
我想用我的 Firefox 测试一个网站,忽略 Location:
标头,就像 PHP 中的示例一样。
header('Location: another-page.php');
有没有可用的插件或任何其他方法来执行此操作?
我最好的选择是使用 Lynx 浏览网站吗?山猫会忽视他们吗?
谢谢
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
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以尝试使用 cURL 调出页面。
它是一个通过以下方式调用的命令行应用程序:
默认情况下,cURL 不遵循
Location:
标头。You could try bringing up the pages with cURL.
It is a command line application that is invoked via:
cURL does not follow
Location:
headers by default.