【发布时间】:2012-02-06 18:15:23
【问题描述】:
我在指向视频文件 (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;
?>
【问题讨论】:
标签: html download right-click save-as