(V免簽 + 易支付 + 監控端) 對接你的支付網站

福利分享 · 01-19 · 265 人浏览
(V免簽 + 易支付 + 監控端) 對接你的支付網站

所謂這類支付大致原理為:
V免簽監聽你的支付寶/微信收款狀態,然後做出判斷傳遞給易支付
易支付收到回訊開始傳遞給你的web服務

也就是説一般需要部署兩個網站,分別為V免簽、易支付,當然現在有易支付+V免簽二合一的程式。

網站對接支付是選擇的易支付提供的商戶ID和Key。
合集下載地址

當然也可以安卓設備挂V免簽:項目地址

不論是v免簽還是易支付我都試過可以放到cloudflare開啓雲朵
V免簽環境:PHP7.2、mysql5.6、nginx1.17
2024-01-19T15:02:11.png

僞靜態:

location ~* (runtime|application)/{

  return 403;

}
location / {

  if (!-e $request_filename){
     rewrite  ^(.*)$  /index.php?s=$1  last;   break;
  }

}

默認文檔index.html放到最上面。
2024-01-19T15:03:23.png

易支付環境:PHP7.、mysql5.6、nginx1.17
僞靜態:

location / {
if (!-e $request_filename) {
  rewrite ^/(.[a-zA-Z0-9\-\_]+).html$ /index.php?mod=$1 last;
}
rewrite ^/pay/(.*)$ /pay.php?s=$1 last;
}
location ^~ /plugins {
  deny all;
}
location ^~ /includes {
  deny all;
}

本站立足于美利堅合衆國,請讀者自覺遵守當地法律!如有違規,本站不承擔任何法律責任! This site is based in the United States of America, readers are requested to abide by local laws! If there are any violations, this site does not bear any legal responsibility! Theme Jasmine by Kent Liao