gpt4 book ai didi

PHP 重定向速度慢;花费很长时间

转载 作者:行者123 更新时间:2023-12-03 23:05:31 35 4
gpt4 key购买 nike

在我们的网站上,我们有一些项目编辑页面。当用户单击保存时,表单将发布到同一页面,然后重定向到下一页。出于某种原因,重定向需要很长时间(例如 60 秒)。

我在代码中放置了计时措施,我可以告诉你,代码本身的执行时间不会超过 1 秒。

这是我用来重定向的内容:

  header("Location: " . $url, true, 307 ); // 307 is temporary redirect

最佳答案

解决问题的方法如下:

  header( 'Content-type: text/html; charset=utf-8' ); // make sure this is set

header("Location: " . $url, true, 307 ); // 307 is temporary redirect

echo "<html></html>"; // - Tell the browser there the page is done
flush(); // - Make sure all buffers are flushed
ob_flush(); // - Make sure all buffers are flushed
exit; // - Prevent any more output from messing up the redirect

关于PHP 重定向速度慢;花费很长时间,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13755573/

35 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com