# Escape hatch: adding ?original to an url can be used to bypass redirection
RewriteCond %{QUERY_STRING} original$
RewriteCond %{REQUEST_FILENAME} -f
RewriteRule . - [L]
This will allow users to insist on showing the jpeg / png for selected images, by adding "?original" to the image url
PS: The escape hatch will also work with Alter HTML - Alter HTML actually skips any image with a querystring
Put the following into the .htaccess:
This will allow users to insist on showing the jpeg / png for selected images, by adding "?original" to the image url
PS: The escape hatch will also work with Alter HTML - Alter HTML actually skips any image with a querystring