如何从 php 浏览器缓存图像
我用德德玛特。有很多有关产品的图片。但此图像来自 php 文件(imgtag.php),因此我无法使用此代码强制浏览器将产品图像放入缓存:
<FilesMatch "\.(flv|gif|jpg|jpeg|png|ico|ttf|eot|swf)$">
Header set Cache-Control "max-age=2592000"
</FilesMatch>
产品图像 URL 示例:
我该怎么做?
I use virtuemart. There are a lot of images about the products. But this images come from a php file(imgtag.php), so I can't force the browser with this code to take the product images to the cache:
<FilesMatch "\.(flv|gif|jpg|jpeg|png|ico|ttf|eot|swf)$">
Header set Cache-Control "max-age=2592000"
</FilesMatch>
Example for product image URL:
How can I do this?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以修改您的
imgtag.php
文件,以便它使用 PHPheader()
函数:注意:设置标题必须在任何输出之前完成。
You could modify your
imgtag.php
file, so it sends that header, using the PHPheader()
function :Note : setting headers must be done before any output.