I'm trying to rewrite all website files (*.jpg|*.gif|*.png) to *.webp in a subdir, but only when the *.webp file exists. Previous and new files have the same name, only changing the extension and *.webp files are all under subdir of the original one.
I'm struggling with htaccess to do the job. Basic rules are:
- Only matches PNG/JPG/GIF file
- Original images dir pattern is:
/site/views/00_projects/[VARIABLE MAIN DIR NAME HERE]/content/image/[VARIABLE SUBDIR NAME HERE]/*.jpg - New
*.webpdir is pattern is:/site/views/00_projects/[VARIABLE DIR NAME HERE]/content/image/[VARIABLE SUBDIR NAME HERE]/webp/*.webp - Only rewrite IF webp file exists
I really have no idea on how to make it work. Can someone help?