使用 PHP 删除某一特定页面的缓存

发布于 2024-10-29 12:03:01 字数 165 浏览 1 评论 0原文

我在我的网页中使用 Flowplayer。视频结束后,我会切换到另一个视频并重新启动播放器。如果我在播放第一个视频的同时删除第一个视频并上传第二个视频,就会出现问题。如果我清除浏览器缓存并再次重新启动播放器,它将播放最后上传的文件。请指导我:是否有其他方法可以清除特定页面的缓存,或重新启动Flowplayer缓存?

I am using Flowplayer in my webpage. Once the video ends, I change to another video and restart the player. My issue occurs if I remove the first video and upload the second video while still playing the first video. If I clear the browser cache and again restart the player, then it plays the last uploaded file. Please guide me: is there is any other way to clear the cache of a particular page, or restart the Flowplayer cache?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

旧人九事 2024-11-05 12:03:01

确保每个视频都有自己的网址,并使用此调用确保页面本身不被缓存:

header('Expires: Thu, 19 Nov 1981 08:52:00 GMT');
header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0');
header('Pragma: no-cache');

Make sure each video have it's own URL, and use this call to make sure the page in itself isn't cached:

header('Expires: Thu, 19 Nov 1981 08:52:00 GMT');
header('Cache-Control: no-store, no-cache, must-revalidate, post-check=0, pre-check=0');
header('Pragma: no-cache');
jJeQQOZ5 2024-11-05 12:03:01

将这两行添加到您的代码中,位于应用程序顶部的某个位置

header('Cache-Control: no-cache, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
// this date can be set somewhere in the past

Add these 2 lines in you're code, somewhere at the top of you're app

header('Cache-Control: no-cache, must-revalidate');
header('Expires: Mon, 26 Jul 1997 05:00:00 GMT');
// this date can be set somewhere in the past
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文