TypechoJoeTheme

Dcr163的博客

统计

Nignx伪静态PHP Url Post请求

2024-08-03
/
0 评论
/
260 阅读
/
正在检测是否收录...
08/03

Nignx伪静态PHP Url Post请求,废话不多少直接上代码

#微信商家转账到零钱打款回调 try_files
location ~ ^/transferBatches/([^/]+)/([^/]+)$ {
    try_files $uri $uri/ @transferBatches;
}
#微信商家转账到零钱回调
location @transferBatches {
    rewrite ^/transferBatches/([^/]+)/([^/]+)$ /addons/$1/payment/wechat/transferBatches.php?id=$2 last;
}

上面的意思是,当访问链接:http://yourdomian/transferBatches/module/111
会重写到
http://yourdomian/addons/module/payment/wechat/transferBatches.php?id=111 这个地址

为什么要使用try_files呢?

因为普通的 rewrite重写到地址,使用POST请求的话原来 请求的POST参数和请求头都会丢失的。

朗读
赞(1)
版权属于:

Dcr163的博客

本文链接:

https://dcr163.cn/727.html(转载时请注明本文出处及文章链接)

评论 (0)