php HTTP_REFERER header,如何关闭或留空
我正在使用以下简单的 PHP 代理脚本,但在目标站点收到零星消息。
我想也许它可能与 HTTP_REFERER 标头有关,尽管我没有明确定义它。
谁能告诉我如何显式关闭 HTTP_REFERER 标头或将其留空?
提前致谢!
$url = $_GET['path'];
readfile($path);
I'm using the following simple PHP proxy script but am getting a sporadic message at the destination site.
I'm thinking that perhaps it may have something to do with the HTTP_REFERER header, although I'm not explicitly defining it.
Can anyone tell me how to explicitly turn off or leave the HTTP_REFERER header blank?
Thanks in advance!
$url = $_GET['path'];
readfile($path);
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
我认为
readfile()
的 HTTP 包装器不会发送任何特殊标头,更不用说 REFERER 了。是什么让你得出这样的结论?
I don't think the HTTP wrapper to
readfile()
sends any special headers, let alone REFERER.What leads you to the conclusion that it does?