Force download mp4 files

帅比萌擦擦* 提交于 2019-12-06 10:16:03
Eric

If you can use htaccess...

<FilesMatch "\.(mp4|MP4)">
  ForceType application/octet-stream
  Header set Content-Disposition attachment
</FilesMatch>

I use this to force PDFs to download as well. Works great!

Here is another stack question regarding forcing download with PHP... Does essentially the same thing as the htaccess I have written above. Setting the content-disposition to attachement is key.

How to force file download with PHP

EDIT: hrmm... but you have already done something similar which isn't working... See if you can get the htaccess to work with what you're trying to do I guess.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!