标题重定向需要很长时间

时间:2012-06-12 01:50:11

标签: php redirect header location

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

  1. Working Link
  2. Link with long response delay
  3. 我已经通过谷歌搜索并使用了一些替代方案,但似乎没有什么可以做到的。

    当前方法

    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

1 个答案:

答案 0 :(得分:0)

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

ob_start();