Apache directive for file downloads

后端 未结 1 541
名媛妹妹
名媛妹妹 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:

    
      ForceType application/octet-stream
      Header set Content-Disposition attachment
    
    
      ForceType application/octet-stream
      Header set Content-Disposition attachment
    
    

    0 讨论(0)
提交回复
热议问题