Código PHP:
header("Content-Type: application/force-download");
header("Content-Disposition: attachment; filename=".$file_name);
header("Content-Transfer-Encoding: binary");
header("Content-Length: ".urlfilesize($file));
readfile($file);
Un saludo y gracias!