you can try it with a .htaccess file and rewrite it in mod, this should work:
RewriteEngine on
RewriteCond %{REQUEST_FILENAME}.php -f
RewriteRule ^files\/(.*)\.jpg$ $1.jpg.php
if you want to catch all extensions, change the ReweriteRule to:
RewriteRule ^files\/(.*)$ $1.php
source
share