Sabes manejar php?.... y si sabes, utiliza esto:
Código PHP:
$id = "archivo.mp3";
$enlace = $directorio."/".$id;
header ("Content-Disposition: attachment; filename=".$id."\n\n");
header ("Content-Type: application/octet-stream");
header ("Content-Length: ".filesize($enlace));
readfile($enlace);
Saludos !