Prueba con:
Código PHP:
function Descargar($file){
header('Content-Description: File Transfer');
header('Content-Type: application/force-download');
// header('Content-Length: ' . filesize($file));
header('Content-Disposition: attachment; filename=' . basename($file));
readfile($file);
}