我有两台服务器正在运行确切的代码,而登台服务器就像一个魅力,生产服务器在重定向方面非常慢。
我已经通过谷歌搜索并使用了一些替代方案,但似乎没有什么可以做到的。
当前方法
if (strpos($headers[$index], 'Location: ') === 0) {
$redirection = $headers[$index];
break;
}
header($redirection);
exit;
尝试了以下
header($redirection);
echo "<HTML></HTML>";
exit;
以下方法打破了它
if ($headers[$index]){
$redirection = $headers[$index];
break;
}
echo '<META HTTP-EQUIV="Refresh" Content="0; URL='.$redirection.'">';
exit;
重定向是https://www.youtube.com/watch?v=YVB1r4D8QH0?version=3
答案 0 :(得分:0)
尝试在顶部添加一个输出缓冲区,不要在它之后回显任何其他内容然后退出
ob_start();