Skip to content

Instantly share code, notes, and snippets.

@radist2s
Created December 25, 2018 07:00
Show Gist options
  • Save radist2s/61f317cef25d56da409b0728d95c935b to your computer and use it in GitHub Desktop.
Save radist2s/61f317cef25d56da409b0728d95c935b to your computer and use it in GitHub Desktop.
Apache .httaccess WebP rewrite
<IfModule mod_rewrite.c>
RewriteEngine On
RewriteCond %{HTTP_ACCEPT} image/webp
RewriteCond %{DOCUMENT_ROOT}/$1.webp -f
# WordPress content directory only rule.
# To rewrite all files remove `wp-content/` from regular expression below.
RewriteRule ^(wp-content/.+)\.(jpe?g|png)$ $1.webp [T=image/webp,E=accept:1]
</IfModule>
AddType image/webp .webp
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment