Nginx rewrite querystring 및 분석 query 실전

589 단어 nginx
Nginx rewrite querystring 및 분석 query 실전
 location ^~ /R {
         if ( $query_string ~ ^i=(.*)&t=a(.*) ) {
              set $a $1;
              set $b $2;
              rewrite ^/(.*) https://www.xxx.yyy.com.cn:9100/m.html#/home?id=${a}&Type=Asset${b}? permanent;
            }
       rewrite ^/(.*) https://www.xxx.yyy.com.cn:9100/m.html#/home permanent;
   }

주:
1. rewrite 의 맨 뒤에 꼭 넣 어야 한다?번 으로 query 를 제거 합 니 다string。위의 와 같다 ?마지막 Type = Asset {b} 뒤에 놓 았 습 니 다.
결 성 된 경우 rewrite 는 querystring 이 새 URI 뒤에 있 는!
2. query 분석 방법string

좋은 웹페이지 즐겨찾기