Re: Meet the Experts
Hi , I am facing Leverage Browser Caching Warning message for some static images. These images are directly hard coded in code. Also, cache-control and Expires headers are not visible in network tab. But, in dispatcher.any configuration file , we have all these headers and have code to fix the leverage browser caching issue as below. Can anyone suggest steps to resolve this issue?
LoadModule expires_module modules/mod_expires.so
<Location /content/dam>
ExpiresByType text/css "access plus 1 month"
ExpiresByType text/javascript "access plus 1 month"
ExpiresByType image/png "access plus 1 month"
ExpiresByType image/gif "access plus 1 month"
</Location>
