Proba esto;
Código PHP:
header('Content-Type: application/octet-stream');
header('Content-Length: '.filesize($destino));
header ("Content-Disposition: attachment; filename=".$destino);
header("Content-Transfer-Encoding: binary");
readfile($destino);
Tal vez esta también;
Cita: header("Content-type: application/force-download");