Skip to content

Instantly share code, notes, and snippets.

@SitesByYogi
Created August 22, 2024 13:19
Show Gist options
  • Save SitesByYogi/0efc125323a30b48a6b47c893bd7a6ce to your computer and use it in GitHub Desktop.
Save SitesByYogi/0efc125323a30b48a6b47c893bd7a6ce to your computer and use it in GitHub Desktop.
Modify Your .htaccess File (for Apache Servers)
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_ACCEPT} image/webp
RewriteCond %{DOCUMENT_ROOT}/$1.webp -f
RewriteRule (.+)\.(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
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment