Site Optimization - Apache

I see that there are many css files - this could be a problem because a browser can download only 4 files at a time. Did you tried to use .htaccess compression? I try to attach here the .htaccess content I use on my projects. If you want the file, please send me an email: grig[dot]dorin[at]gmail[dot]com Create .htaccess file on your website root and add this: (this will speed your website and should fix the problem - also, is very good for SEO) # Charset AddDefaultCharset UTF-8 AddType application/x-font-woff2 .woff2 # PAGE SPEED | OPTIMIZATION <IfModule mod_gzip.c> mod_gzip_on Yes mod_gzip_dechunk Yes mod_gzip_item_include file .(html?|txt|css|js|php|ico)$ mod_gzip_item_include handler ^cgi-script$ mod_gzip_item_include mime ^text/.* mod_gzip_item_include mime ^application/x-javascript.* mod_gzip_item_exclude mime ^image/.* mod_gzip_item_exclude rspheader ^Content-Encoding:.*gzip.* </IfModule> # Vary: Accept-Encoding header <IfModule m...