Jump to content

PAGE SPEED: Leverage browser caching


ycorde

Recommended Posts

Hi all,

 

We have a website in prestashop

PS version: 1.4.3

PHP: 5.3.2

Website: www.marie-melodie.com

 

When we run 'page speed' we obtain following result as 'High Priority' modification

 

Leverage browser caching

 

Setting an expiry date or a maximum age in the HTTP headers for static resources instructs the browser to load previously downloaded resources from local disk rather than over the network.

Learn more

Suggestions for this page

 

The following cacheable resources have a short freshness lifetime. Specify an expiration at least one week in the future for the following resources:

 

And a list of files.

 

 

 

 

So we added in our .htaccess following

 

<IfModule mod_expires.c>

ExpiresActive On

ExpiresByType image/gif "access plus 1 month"

ExpiresByType image/jpeg "access plus 1 month"

ExpiresByType image/png "access plus 1 month"

ExpiresByType text/css "access plus 1 week"

ExpiresByType text/javascript "access plus 1 week"

ExpiresByType application/javascript "access plus 1 week"

ExpiresByType application/x-javascript "access plus 1 week"

ExpiresByType image/x-icon "access plus 1 year"

</IfModule>

 

FileETag INode MTime Size

<IfModule mod_deflate.c>

AddOutputFilterByType DEFLATE text/html

AddOutputFilterByType DEFLATE text/css

AddOutputFilterByType DEFLATE text/javascript

AddOutputFilterByType DEFLATE application/javascript

AddOutputFilterByType DEFLATE application/x-javascript

</IfModule>

 

 

 

Unfortunately without any result.... still the same

 

 

Is there another way to solve this problem.

 

 

Thanks in advance

 

Jack

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...