Código PHP:
<?php
function descargar($so_mp3){
$elArchivo = basename($so_mp3);
header( "Content-Type: application/octet-stream");
header( "Content-Length: ".filesize($so_mp3));
header( "Content-Disposition: attachment; filename=".$elArchivo."");
readfile($so_mp3);
}
descargar($so_mp3);
?>
Fijate con esta funcion