需求:

http[s]://weidian.com/plaza/searchAll.html?tb_search=连衣裙&type=item -》https://h5.weidian.com/m/search/searchlist/index.html?keyword=连衣裙&type=商品

http[s]://weidian.com/plaza/searchAll.html?tb_search=连衣裙&type=shop -》https://h5.weidian.com/m/search/searchlist/index.html?keyword=连衣裙&type=店铺

上面需求可以看出:参数由tb_search 变为keyword,其他正常rewrite即可



nginx前端有负载均衡情况下,对外不能访问

        location ~ ^/order/manage/(.*) {
               set $flagManage 0;
                   if ($host != 'idc01-wd-order-vip00'){
                         set $flagManage "${flagManage}1";
                              }
                  if ($host != 'idc01-wd-order-vip00.dns.koudai.com'){
                         set $flagManage "${flagManage}2";
                              }
                  if ($host != '10.2.16.204'){
                         set $flagManage "${flagManage}3";
                              }

                  if ($flagManage = "0123"){
                        return 400;
                     }
         }
        location ~ ^/express/manage/(.*) {
               set $flagManage 0;
                   if ($host ~ (idc01-wd-express-vip00|idc01-wd-express-vip00.dns.koudai.com)){
                         set $flagManage 1;
                              }
                  if ($flagManage = 0){
                        return 400;
                     }
                if ($flagManage = 1){
                   rewrite ^/express/(.*)$       /express/index.php?$1 break;
                }
        }
        if ($uri !~ "^/express/manage/"){
                rewrite ^/express/(.*)$                 /express/index.php?$1 last;
        }

解:

rewrite ^/plaza/searchAll.html https://h5.weidian.com/m/search/searchlist/index.html?keyword=$arg_tb_search&type=$arg_type? permanent;


参数的变化:可以使用arg_参数名  去匹配到具体参数所带的值  最后的?可以阻止请求中原来的参数再带过来放到重写后的url里  



其他有用的nginx全局变量

arg_PARAMETER    #这个变量包含GET请求中,如果有变量PARAMETER时的值。
args                    #这个变量等于请求行中(GET请求)的参数,如:foo=123&bar=blahblah;
binary_remote_addr #二进制的客户地址。
body_bytes_sent    #响应时送出的body字节数数量。即使连接中断,这个数据也是精确的。
content_length    #请求头中的Content-length字段。
content_type      #请求头中的Content-Type字段。
cookie_COOKIE    #cookie COOKIE变量的值
document_root    #当前请求在root指令中指定的值。
document_uri      #与uri相同。
host                #请求主机头字段,否则为服务器名称。
hostname          #Set to themachine’s hostname as returned by gethostname
http_HEADER
is_args              #如果有args参数,这个变量等于”?”,否则等于”",空值。
http_user_agent    #客户端agent信息
http_cookie          #客户端cookie信息
limit_rate            #这个变量可以限制连接速率。
query_string          #与args相同。
request_body_file  #客户端请求主体信息的临时文件名。
request_method    #客户端请求的动作,通常为GET或POST。
remote_addr          #客户端的IP地址。
remote_port          #客户端的端口。
remote_user          #已经经过Auth Basic Module验证的用户名。
request_completion #如果请求结束,设置为OK. 当请求未结束或如果该请求不是请求链串的最后一个时,为空(Empty)。
request_method    #GET或POST
request_filename  #当前请求的文件路径,由root或alias指令与URI请求生成。
request_uri          #包含请求参数的原始URI,不包含主机名,如:”/foo/bar.php?arg=baz”。不能修改。
scheme                #HTTP方法(如http,https)。
server_protocol      #请求使用的协议,通常是HTTP/1.0或HTTP/1.1。
server_addr          #服务器地址,在完成一次系统调用后可以确定这个值。
server_name        #服务器名称。
server_port          #请求到达服务器的端口号。