# For safe keeping
# From https://journalxtra.com/web-development/fix-missing-images-size-fits-replacement/
# Clever trick if you're working off a local dev copy and don't want to download all the media image to work

RewriteCond %{REQUEST_FILENAME} !-f
RewriteCond %{REQUEST_URI} \.(gif|jpg|jpeg|png)$
RewriteRule .* directory-path/replacement-image.jpg [L]