How to force a web browser NOT to cache images

后端 未结 17 622
太阳男子
太阳男子 2020-11-22 13:51

Background

I am writing and using a very simple CGI-based (Perl) content management tool for two pro-bono websites. It provides the website administrator with HTML

17条回答
  •  北海茫月
    2020-11-22 14:35

    I use PHP's file modified time function, for example:

    echo ";
    

    If you change the image then the new image is used rather than the cached one, due to having a different modified timestamp.

提交回复
热议问题