Hice un php para forzar descargas y anda bien:
Código PHP:
<?php
$id=$_GET['cfg'];
$path=$_GET['ph'];
$enlace = 'Configs/'.$path.'/'.$id ;
header ("Content-Disposition: attachment; filename=".$id."\n\n");
header ("Content-Type: application/octet-stream");
header ("Content-Length: ".filesize($enlace));
readfile($enlace);
?>
Alguna solucion? Gracias!