javascript - How to add Expires headers for images,css and js files in a node and react based project? -


here .htaccess file content

    <ifmodule mod_expires.c>     # enable expirations     expiresactive on     # default directive     expiresdefault "access plus 1 month"     # favicon     expiresbytype image/x-icon "access plus 1 year"     # images     expiresbytype image/gif "access plus 1 month"     expiresbytype image/png "access plus 1 month"     expiresbytype image/jpg "access plus 1 month"     expiresbytype image/jpeg "access plus 1 month"     # css     expiresbytype text/css "access plus 1 month"     # javascript     expiresbytype application/javascript "access plus 1 year"     </ifmodule> 

i have provided file @ main project root directory


Comments

Popular posts from this blog

Sort a complex associative array in PHP -

vb.net - How to ignore if a cell is empty nothing -

recursion - Can every recursive algorithm be improved with dynamic programming? -