用PHP做下载嘛:
<?
header("Cache-control: private");
header('Content-Disposition: attachment; filename='.$filename);
header("Content-Type: application/force-download"); 
readfile($filePath);
?>