我正在尝试根据其引荐来源网址重定向到页面。布局就像
<?php
$URL_REF = $_SERVER['HTTP_REFERER'];
if($URL_REF == "url of my site") {
header("Location: url of another site");
exit();
}
else {
header("Location: my home page");
exit();
}
?>
我收到错误消息:Cannot modify header information - headers already sent by
。
我必须将我的 php.ini 修改为 output_buffering = On 但我不能这样做,因为我在 hostgator 中有一个共享主机帐户。谁能建议我现在有什么选择?我可以通过更改我的代码来做到这一点吗?如果是,比什么变化?