无需右击即可下载文件

时间:2012-02-06 18:15:24

标签: html download right-click save-as

我在页面上有一个指向视频文件(mp4)的<a href>链接。当访问者点击链接时,视频文件将在浏览器窗口中打开。

如果要下载文件,则必须“右键单击”,然后“将链接另存为...”

我希望这样,只需单击一下文件即可下载(这样我就无需右键单击)。

编辑:这里有什么问题?

<?php
    header('Content-Description: File Transfer');
    header('Content-Type: video/mp4');
    header('Content-Disposition: attachment; filename=file');
    header('Content-Transfer-Encoding: binary');
    header('Expires: 0');
    header('Cache-Control: must-revalidate');
    header('Pragma: public');
    header('Content-Length: ' . filesize($file));
    ob_clean();
    flush();
    readfile($file);
    exit;
?>

1 个答案:

答案 0 :(得分:4)

Content-Disposition header设置为attachment。例如:

Content-Disposition: attachment; filename=lolcats42.mp4