我有两台服务器运行确切的代码,而登台服务器就像一个魅力,生产服务器在重定向时非常慢。
我已经通过谷歌搜索并使用了一些替代方案,但似乎没有任何效果。
当前方法
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