You can set caching headers appropriately in apache to invalidate the browser cache after the time to live (max-age) value expires. However, It is not good for page performance to set low TTL values for browser cache. <LocationMatch "^\.*.(jpeg|jpg)$">
Header set Cache-Control "max-age=222"
...