samura87 Posted March 27, 2018 Share Posted March 27, 2018 Hola, He encontrado el siguiente código para convertir las imágenes al formato webp. Pero no se exactamente donde comentarlo. Indican que es la regla para apache. RewriteRules for Apache (.htaccess) <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_ACCEPT} image/webp RewriteCond %{DOCUMENT_ROOT}/$1.webp -f RewriteRule ^(path/to/your/images.+)\.(jpe?g|png)$ $1.webp [T=image/webp,E=accept:1] </IfModule> <IfModule mod_headers.c> Header append Vary Accept env=REDIRECT_accept </IfModule> AddType image/webp .webp Gracias, Saludos. Link to comment Share on other sites More sharing options...
joseantgv Posted March 27, 2018 Share Posted March 27, 2018 42 minutes ago, samura87 said: Hola, He encontrado el siguiente código para convertir las imágenes al formato webp. Pero no se exactamente donde comentarlo. Indican que es la regla para apache. RewriteRules for Apache (.htaccess) <IfModule mod_rewrite.c> RewriteEngine On RewriteCond %{HTTP_ACCEPT} image/webp RewriteCond %{DOCUMENT_ROOT}/$1.webp -f RewriteRule ^(path/to/your/images.+)\.(jpe?g|png)$ $1.webp [T=image/webp,E=accept:1] </IfModule> <IfModule mod_headers.c> Header append Vary Accept env=REDIRECT_accept </IfModule> AddType image/webp .webp Gracias, Saludos. In the file .htaccess from the root folder. Link to comment Share on other sites More sharing options...
samura87 Posted March 27, 2018 Author Share Posted March 27, 2018 Si, gracias Jose. Lo conseguí y comentarlo en el sitio adecuado, comprime todas las imágenes, todas están visibles, salvo cuando accedes al producto. ¿Sabes algo del tema? Gracias, Saludos. Link to comment Share on other sites More sharing options...
jcata Posted March 23, 2022 Share Posted March 23, 2022 (edited) hola yo lo he resuelto manualmente para el blog de https://www.catatea.com/blog/ en Joomla y para el ecommerce https://www.catatea.com/ en prestashop el tema de las imagenes en webp, no es lo mas optimo pero me funciona: lo que hago es 1-genero los ficheros webp de todos los png y jpg, con los comandos find ./ -type f -name '*.jpg' -exec sh -c ' cwebp -q 90 $1 -o "${1%.jpg}.jpg.webp"' _ {} \; find ./ -type f -name '*.png' -exec sh -c ' cwebp -q 90 $1 -o "${1%.png}.png.webp"' _ {} \; 2-configuro .htaccess para que cualquier petición a un jpg o png lo redireccione als fichero webp correspondiente... ajustondo el .htacces podrias generar al vuelo el webp sin necesidad del paso 1... os adjunto el .htaccess del prestashop a ver si con esto ayuda .. htaccess_prestashop Edited March 23, 2022 by jcata (see edit history) Link to comment Share on other sites More sharing options...
Recommended Posts
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 accountSign in
Already have an account? Sign in here.
Sign In Now