you could do it w/ a rewrite rule, but ive found the easiest and cleanest method is to keep all your images in thier own directory,
and then add a new htaccess to that directory w/ this
RewriteEngine Off
you can doo the same for stylesheets again by putting them in thier own directory like above and so on
then if you have any other oddball files left that you dont want to put in thier own dir,
do like this in you main htaccess
RewriteEngine On
RewriteRule oddball\.php oddball.php [L] # L means last rule, stop rewriting immediately
RewriteRule ^presents-cerruti/(.*)/(.*) /presents-cerruti.php?code=$1&description=$2