sit tienes la posibilidad de usar php en tu server puedes usar este archivo:
descarga.php: Código PHP:
<?php
$id = $_GET['id'];
$enlace = $id;
header ("Content-Disposition: attachment; filename=".$id."\n\n");
header ("Content-Type: application/octet-stream");
header ("Content-Length: ".filesize($enlace));
readfile($enlace);
?>
para usarlo solo lo llamas asi en el <a href="descarga.php?id=TuArchivo.MP3" />descargalo aqui</a>
donde cambias "TuArchivo.MP3" por la direccion y nombre del archivo.
espero te sirva
![Afirmando](http://static.forosdelweb.com/fdwtheme/images/smilies/afirmar.gif)
.