How to Create Download Link

前端 未结 3 1596
粉色の甜心
粉色の甜心 2021-02-06 01:13

What\'s the best way to create a download link? Is there a better way than the following?

I was thinking of using link_to \"Download\", :controller => ..., :act

3条回答
  •  太阳男子
    2021-02-06 01:43

    I've just created a Download .mp3 link and used in my .htaccess file.

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

    I found this to be easier than any other solution.

提交回复
热议问题