I would like to cache images, but not certain files like CSS and JS. I only found out how to not cache everything, is there a way to selectively cache whichever I want?
// meta tags to not store cache
<meta http-equiv="Cache-control" content="no-cache">
<meta http-equiv="Expires" content="-1">
// force reload cache in JS
location.reload(true);