You want to use a combination of mod_rewrite (to fake the download directory) and mod_headers (to add a Content-Disposition header).
Create a .htaccess file in the image directory:
<filesmatch ". *">
Header set Content-Disposition attachment env = REDIRECT_force_download
& lt / filesmatch>
, REDIRECT_force_download.
.htaccess:
RewriteEngine On
RewriteRule (.*) ../$1 [L,NC,QSA,E=force_download:1]
() "REDIRECT_force_download", .