我为apache2配置了mod_sendfile。我测试了它 - 工作正常。
现在我尝试更改下载文件的文件名,我使用方法“filename”
e.g。
send_file "#{Rails.root}/public#{current_user.file_url}", :type=>"application/pdf", :filename => "#{current_user.name}.pdf", :x_sendfile => true
下载文件时为空...应该是pdf文件...
send_file "#{Rails.root}/public#{current_user.file_url}", :type=>"application/pdf", :x_sendfile => true
工作得很好......