强制firefox下载视频

时间:2013-02-04 16:22:17

标签: html firefox

我需要为用户提供下载视频的下载链接。当我使用firefox访问链接时,它开始播放而不是下载。

我如何强制firefox下载它?

2 个答案:

答案 0 :(得分:3)

您必须设置一些HTTP标头。 PHP中的示例:

header("Content-Disposition: attachment; filename=" . urlencode($file));    
header("Content-Type: application/force-download");
header("Content-Type: application/octet-stream");
header("Content-Type: application/download");

答案 1 :(得分:-1)

lol右键单击链接而不是左键单击并选择选项保存链接为..