Jump to content

Convertir imágenes a webp formato google


samura87

Recommended Posts

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

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

  • 3 years later...

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 by jcata (see edit history)
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...