I solved this by changing the path specified from Content/Images, toContent
<location path="Content">
<system.webServer>
<staticContent>
<clientCache cacheControlCustom="public"
cacheControlMode="UseMaxAge"
cacheControlMaxAge="365.00:00:00" />
</staticContent>
</system.webServer>
</location>
So, it is fixed, but changing the path does not make it clear that the problem actually was.
source
share