1

我有两台服务器运行确切的代码,而登台服务器就像一个魅力,生产服务器在重定向时非常慢。

  1. 工作链接
  2. 响应延迟长的链接

我已经通过谷歌搜索并使用了一些替代方案,但似乎没有任何效果。

当前方法

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

4

1 回答 1

1

尝试在顶部添加一个输出缓冲区,在它之后不要回显任何其他内容然后退出

ob_start();

于 2013-05-31T16:52:00.540 回答