DZone Snippets is a public source code repository. Easily build up your personal collection of code snippets, categorize them with tags / keywords, and share them with the world

Benoit has posted 48 posts at DZone. View Full User Profile

Force Download Files

01.09.2009
| 4061 views |
  • submit to reddit
        // description of your code here

.htaccess
<IfModule mod_headers.c>
	<FilesMatch "\.(jpe?g)$">
		ForceType image/jpeg
		Header set Content-Disposition attachment
	</FilesMatch>
</IfModule>

<a href="http://www.ab-d.fr/">Retour à la source : </a><a href="http://www.ab-d.fr/date/2009-01-09/">Comment forcer le téléchargement d'un fichier ? ( Header, FilesMatch, Apache )</a>