首页 > Web > nginx > 正文

nginx特殊字符的rewrite
2018-02-02 18:00:20 点击:

原地址:borrowinfo page?borrow_id=2017121500000000000000005173目标地址: invest info?borrowId=2017121500000000000000005173if ($re
原地址:
borrowinfo.page?borrow_id=2017121500000000000000005173
目标地址:
/invest/info?borrowId=2017121500000000000000005173

if ($request_uri ~* "^/borrowinfo.page\?borrow_id=(\d+)$") {
          set $myarg $1;
          rewrite .* https://www.domain.com/invest/info?borrowId=$myarg? permanent;
  }       





说明:$1不可直接使用,不然会不生效;
           域名改成自己的;


相关热词搜索:字符

上一篇:nodejs+socket.io用nginx反向代理提示400 Bad Request及ws://…无法连接
下一篇:nginx通过GeoIP模块限制国家地区用户访问