我需要为用户提供下载视频的下载链接。当我使用firefox访问链接时,它开始播放而不是下载。
我如何强制firefox下载它?
答案 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右键单击链接而不是左键单击并选择选项保存链接为..