目录一、获取 header 请求头二、获取url参数总结
一、获取 header 请求头
在 ngx_lua 中访问 Nginx 内置变量 ngx.var.http_HEADER 即可获得请求头HEADER的内容。
在 nginx配置中,通过$http_HEADER 即可获得请求头HEADER的内容。
案例:
$.ajax({ ……. headers: { Accept: “application/json; charset=utf-8”, X-TimerLocal: “Bin” //这个是自定义的请求头 }, ……. });在nginx的location配置中,在获取header配置时,须要在header名称前面加上固定前缀“http_“,并将header名称中的“-”中划线变为下划线,举例说明:
自定义的header名称为X-TimerLocal,那在nginx中使用$http_x_timerlocal 来获取到X-TimerLocal的值。
if ($http_x_timerlocal = BIN) { rewrite ^(.*/timerbin/.*)$ https://$host$1 permanent; }包含X-TimerLocal=BIN的header请求进行判断,若是发现路径中包含/timerbin/路径时,对请求URL进行重写,从新跳转。
二、获取url参数
在 ngx_lua 中访问 Nginx 内置变量 ngx.var.arg_PARAMETER 即可获得GET参数PARAMETER的内容。
在 nginx配置中,通过$arg_PARAMETER 即可获得GET参数PARAMETER的内容。
案例:
通过 http://www.test.com?name=hello&id=123 来验证url的请求参数,能够在nginx中获取到,只需要修改nginx.conf 配置文件如下,就可以在access.log中看到id和name在log中
http { include mime.types; default_type application/octet-stream; log_format main { “@timestamp”: “$time_iso8601”, “servername”: “$http_host”, “id”: “$arg_id”, “name”: “$arg_name”, “remote_addr”: “$remote_addr”, “referer”: “$http_referer”, “request”: “$request”, “request_time”: “$request_time”, “status”: $status, “bytes”:$body_bytes_sent, “agent”: “$http_user_agent”, “x_forwarded”: “$http_x_forwarded_for”, “upstr_addr”: “$upstream_addr”, “upstr_host”: “$upstream_http_host”, “ups_resp_time”: “$upstream_response_time” }; access_log logs/access.log main; server_names_hash_bucket_size 128;总结
© 版权声明
THE END
暂无评论内容