JavaScript Caching

.

How to Fix

In order to reduce the number of HTTP requests, you can use the HTTP Expires header to set an expiration time for your JavaScript resources or any other content type. You can add the following lines into your .htaccess file:

< ifmodule mod_expires.c="" > ExpiresActive on ExpiresByType text/javascript "access plus 1 month" ExpiresByType application/javascript "access plus 1 month" < /ifmodule >
loading...