openresty 根据参数 重定向请求
1、nginx配置文件增加配置节
location /a {
default_type 'text/html';
lua_code_cache on;
rewrite_by_lua_file /data/lua/a.lua;
}
location @b {
default_type 'text/html';
lua_code_cache on;
content_by_lua_file /data/lua/b.lua;
}
location @c {
default_type 'text/html';
lua_code_cache on;
content_by_lua_file /data/lua/c.lua;
}
vi a.lua
ngx.req.read_body()
local args, err = ngx.req.get_post_args()
if args["t1"]==nil then
ngx.req.set_uri_args("t1=ccc")
ngx.exec("@b")
else
ngx.req.set_uri_args("t1=ccc")
ngx.exec("@c")
end
vi b.lua
ngx.req.read_body()
local args, err = ngx.req.get_post_args()
ngx.say("b")
ngx.say(ngx.var.arg_t1)
ngx.say(args["t1"])
ngx.say(ngx.req.get_headers()["AAA"])
vi c.lua
ngx.req.read_body()
local args, err = ngx.req.get_post_args()
ngx.say("c")
ngx.say(ngx.var.arg_t1)
ngx.say(args["t1"])
ngx.say(ngx.req.get_headers()["AAA"])
--[[
分别显示post,get参数和header信息
]]--
【openresty 根据参数 重定向请求】模拟发送请求,携带和不携带POST参数,显示不同的结果。
推荐阅读
- 记录iOS生成分享图片的一些问题,根据UIView生成固定尺寸的分享图片
- [源码解析]|[源码解析] NVIDIA HugeCTR,GPU版本参数服务器---(3)
- 接口|axios接口报错-参数类型错误解决
- performSelectorOnMainThread:withObject:waitUntilDone:参数设置为NO或YES的区别
- 运营是什么()
- ATAN2根据xy坐标计算角度
- iview|iview upload 动态改变上传参数
- 周检视5/14-5/21(第三周)
- Arcgis根据经纬度批量提取属性值
- 小程序开发|小程序开发 - 页面传值url类型