Files
resty_functions/dev/download_image/download_image.lua
T

7 lines
269 B
Lua
Raw Normal View History

2021-08-27 09:30:15 +08:00
-- Get download image id
local download_image_id = string.match(ngx.var.request_uri, ".*/(.*)$")
ngx.log(ngx.INFO , "Download image id: " .. download_image_id)
-- Set redirect uri
local uri = "/internal_file_upload/" .. download_image_id .. ".jpg"
return ngx.exec(uri)