Try adding this to the top of the .htaccess file:
<FilesMatch ".(?i:(mp3))$"> <IfModule mod_headers.c> ForceType application/octet-stream Header set Content-Disposition attachment </IfModule> </FilesMatch>
If you want to force download another type of file (say pdf?), Just add it next to mp3, for example:
<FilesMatch ".(?i:(mp3|pdf))$">
source share