标签: php apache
我正在为自动通知编写目标脚本,不需要任何返回信息。 如果使用退出,那么仍然会(可能)发回HTTP标头。有没有办法减少输出?像“外国主持人关闭连接”这样的东西。
Apache + php模块
答案 0 :(得分:0)
对于简单的301重定向标题,您可以使用以下内容:
<?php header("Location: http://www.google.com"); die("Connection closed by foreign host"); ?>