Nginx——根据ur中的参数进行转发
Posted 。思索
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Nginx——根据ur中的参数进行转发相关的知识,希望对你有一定的参考价值。
前言
业务需求
步骤
location / {
if ($request_uri ~* ^/?id=(.*)&type=(d)$) {
return 307 https://shtlc.xxxx.cn/micro_code/customize?id=$arg_id;
}
try_files $uri $uri/ /index.html;
}
以上是关于Nginx——根据ur中的参数进行转发的主要内容,如果未能解决你的问题,请参考以下文章