标签: lua openresty
我有一个关于LUA openresty的后端。我需要刷新一个页面 在php-code中:
header("Refresh:0");
如何在LUA中做同样的事情?
答案 0 :(得分:0)
page = [[ <head> <meta http-equiv="refresh" content="0"> </head> ]] ngx.say(page)