Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我需要在上传图像并替换其他图像时将其从缓存中删除。图片在 nginx 服务器上(1h 过期),通过 apache & php 上传
Steve Fenton 我可以为此禁用缓存
如果我用一小时修改创建日期会更新吗?
如果您通过 PHP 提供图像,则可以通过调整 URL 将其从用户的缓存中取出。例如,如果你有这个:
<img src="a.png" alt="Butterfly">
以下将确保a.png不使用缓存:
a.png
<img src="a.png?1" alt="Butterfly">
你可以使用任何东西——版本号、时间戳(尽管它永远不会被缓存)或任何你喜欢的东西。