TypechoJoeTheme

Dcr163的博客

统计

Nignx伪静态PHP Url Post请求

2024-08-03
/
0 评论
/
732 阅读
/
正在检测是否收录...
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的博客

本文链接:

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

评论 (0)

人生倒计时

今日已经过去小时
这周已经过去
本月已经过去
今年已经过去个月

最新回复

  1. slot demo
    2025-01-13
  2. 陌天
    2025-01-09
  3. Kerrie Bostick
    2024-12-28
  4. Norma Gainey
    2024-09-21
  5. Amber Powlett
    2024-05-09

标签云