2013-02-04 132 views
0

我需要提供下載鏈接給用戶下載視頻。當我使用firefox訪問鏈接時,它開始播放而不是下載。強制firefox下載視頻

我該如何強制firefox下載它?

+0

你所鏈接的視頻或嵌入的播放器?連接視頻的 – Vogel612

+0

。 – green

回答

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

笑右鍵單擊鏈接而不是單擊鼠標左鍵選擇選項鍊接另存爲...

+0

我認爲問題的關鍵在於讓左鍵單擊與右鍵單擊相同的操作 - >另存爲。 –