Tips and tricks
How to force mp3 file to download PHP
Force mp3 to download instead of playing
Just add a .htaccess file in the mp3 folder with this content:
<Files *.*>
ForceType application/octet-stream
Header set Content-Disposition attachment
</Files>