Link to download image instead of view image

后端 未结 2 1994
心在旅途
心在旅途 2021-02-11 01:47

I need to provide website visitors a link to download an original high resolution image. If I simply link to the image with a href=\"image.jpg\", the browser displays the image

2条回答
  •  醉话见心
    2021-02-11 02:47

    You can use the content-disposition header to let the client download the image:

    Content-Disposition: attachment; filename=
    

提交回复
热议问题