Force a file or image to download using .htaccess

Put this into your .htaccess

<FilesMatch "\.(?i:jpg|gif|png)$">
  Header set Content-Disposition attachment
</FilesMatch>

Make sure you have mod_headers installed and enabled.

Leave a Comment