Apache directive for file downloads

后端 未结 1 534
名媛妹妹
名媛妹妹 2020-12-19 14:39

How do I create Apache directives in a .htaccess file that forces .mp4 and .pdf to download? Currently they appear within the browser

相关标签:
1条回答
  • 2020-12-19 15:27

    Add the following into an .htaccess file:

    <Files *.mp4>
      ForceType application/octet-stream
      Header set Content-Disposition attachment
    </Files>
    <Files *.pdf>
      ForceType application/octet-stream
      Header set Content-Disposition attachment
    </Files>
    
    0 讨论(0)
提交回复
热议问题