当我在文件系统中更新媒体文件时,为什么 apache 不更新媒体文件?
当我在文件系统中更新媒体文件时,为什么 Apache 不更新它们? (我在 Windows 上使用 xampp 来管理 Apache)因此,当我更新 php 文件时,当我更新 .swf 等媒体文件时,我会立即看到更改,当我调用它们时,它确实会注意到更新它们。为什么会出现这样的问题,又该如何解决呢?
Why Apache does not update media files when I update them in my file system? (I use xampp on Windows to manage Apache) So when I update my php files I see changes immediately byt when I update media files like .swf's it does note update them when I call them. Why, and how to solve such problem?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这似乎是浏览器缓存的问题,而不是 Apache Web 服务器的问题。
请参阅 php 头函数。有一节是关于缓存的。您还可以使用 .htaccess 文件进行缓存控制。
This seem to be a issue of the browser cache and not of Apache web server.
See php header function. There is a section about caching. You also could use a .htaccess file for cache controll.
它们可能位于浏览器的缓存中。清理浏览器的缓存,或使用 SHIFT+F5 重新加载(通常有效),或通过指示不缓存文件的 PHP 文件提供媒体文件。
They probably are in the browser's cache. Clean the browser's cache, or reload using SHIFT+F5 (it usually works), or serve the media files through a PHP file which instructs the files not to be cached.