How can I force an Image download in the browser?

前端 未结 2 2152
长情又很酷
长情又很酷 2020-12-01 13:30

I want to force user to download images. Not open in browser.

It is possible to use HTML5 this attribute download but currently only Chrome sup

2条回答
  •  情歌与酒
    2020-12-01 13:56

    Try this in your .htaccess instead:

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

提交回复
热议问题