Advertisement
smenardpw

WebP htaccess optimization

Apr 19th, 2013
1,098
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. # Check if Accept header is image/webp, if an image is requested in "classic" folder with a classic format, and check if the corresponding webp image exists. If yes, rewrite the requested classic image URI to the WebP image URI.
  2.  
  3. RewriteCond %{HTTP_ACCEPT} image/webp
  4. RewriteCond %{REQUEST_FILENAME} (.*)images/classic/(.*)\.(png|jpg|gif)$
  5. RewriteCond %1images/webp/%2\.webp -f
  6. RewriteRule .* images/webp/%2.webp [L]
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement