https://msunsoft-test.msunhis.com/msun-core-component-upload/core-file/download?filePath=upload/msunsoft-test/10033/10033001/test/ecg/2023/05/5710443451034108681-2023-05-25-20-47-4-77.pdf&productCode=ecg&sign=0caff5e4b1d26337a010b530e7208fb9&orgInfo=eyJob3NwaXRhbElkIjoxMDAzMzAwMSwib3JnSWQiOjEwMDMzfQ&fileType=6&collectTime在nginx中$uri是什么?
时间: 2023-12-28 09:03:17 浏览: 128
MATLAB用拟合出的代码绘图-MW_Sofue2013_autofit:银河系与RAR模型拟合
在nginx中,$uri是客户端请求的URI,不包括查询参数,例如上面的URL中的$uri为:`/msun-core-component-upload/core-file/download`。请注意,$uri只包括请求的路径部分,不包括协议、主机名和端口号。如果您想要获取完整的URL,可以使用变量$request_uri。在这个URL中,如果您想要获取文件路径,可以使用变量$arg_filePath获取查询参数`filePath`的值,例如:
```
location /msun-core-component-upload/core-file/download {
# 处理文件下载请求
# 文件路径
set $file_path $arg_filePath;
# 进一步处理文件路径
...
}
```
在上面的例子中,我们使用set指令将变量$file_path设置为查询参数`filePath`的值。您可以根据实际需要进一步处理$file_path。
阅读全文