I'm looking to add expire headers to my website so I can set a cache time for the files.
I've found the following the example, but I'd like to set it to only cache JPG, PNG, GIF, JS and CSS files if possible?
<system.webServer>
<staticContent>
<clientCache cacheControlMaxAge="14.00:00:00" cacheControlMode="UseMaxAge"/>
</staticContent>
</system.webServer>
Thanks for any help!