location /pc { default_type text/plain; content_by_lua_block { local images = { "001.webp", "002.webp", "003.webp" } math.randomseed(os.time()) local img = images[math.random(#images)] ngx.redirect( "/hukeiapiCC/yoko/" .. img, 302 ) } } location /mp { default_type text/plain; content_by_lua_block { local images = { "001.webp", "002.webp", "003.webp" } math.randomseed(os.time()) local img = images[math.random(#images)] ngx.redirect( "/hukeiapiCC/tate/" .. img, 302 ) } }