Tengo el siguiente htacces para activar el cache y el gzip:
Código:
Sin embargo me pide que debo comprimir css y min.js con gzip o deflate para mejorar la velocidad (hablo de google pagespeed insights).## EXPIRES CACHING ## <IfModule mod_expires.c> ExpiresActive On ExpiresByType image/jpg "access 1 year" ExpiresByType image/jpeg "access 1 year" ExpiresByType image/gif "access 1 year" ExpiresByType image/png "access 1 year" ExpiresByType text/css "access 1 month" ExpiresByType text/html "access 1 month" ExpiresByType application/pdf "access 1 month" ExpiresByType text/x-javascript "access 1 month" ExpiresByType application/x-shockwave-flash "access 1 month" ExpiresByType image/x-icon "access 1 year" ExpiresDefault "access plus 1 month" </IfModule> ## EXPIRES CACHING ## ##GZIP ENABLED## SetOutputFilter DEFLATE AddEncoding x-compress .Z AddEncoding x-gzip .gz .tgz AddType application/x-compress .Z AddType application/x-gzip .gz .tgz AddOutputFilterByType DEFLATE text/php text/HTML text/txt text/css ##GZIP ENABLED##
A parte desde 1&1 me dijeron que crease un fichero php.ini con esto
Código:
Alguna idea de si hay alguna manera de solucionarlo? O de si tengo algún error en el fichero? Y como puedo optimizar la entrega del css? No hay metodo async para ficheros css como los js, no?zlib.output_compression = On zlib.output_compression_level = 9 allow_url_fopen = On session.use_cookies = On
Gracias :)