1
我有我的控制器動作:文件URL
def download
@file = FilmFile.find(params[:film_file_id])
@file.film.downloads += 1
@file.film.save
send_file @file.real_name.path, content_type: @file.real_name.content_type, x_sendfile: true
end
,但在Chrome下載我看到的網址文件,如http://site.org/film_files/1004/download
有沒有一種方法,使這樣的http://site.org/path/to/file/file.mp4
的網址,而不是http://site.org/film_files/1004/download
?
很酷,謝謝! :) – Art