保证每一行代码都是官方原版,无任何修改。
- PHP版本:>=7.1,推荐7.4或8.0
- MySQL版本:5.6或5.7
Nginx伪静态
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;
}
IIS伪静态
<rule name="payrule1_rewrite" stopProcessing="true">
<match url="^(.[a-zA-Z0-9-_]+).html"/>
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
</conditions>
<action type="Rewrite" url="index.php?mod={R:1}"/>
</rule>
<rule name="payrule2_rewrite" stopProcessing="true">
<match url="^pay/(.*)"/>
<conditions logicalGrouping="MatchAll">
<add input="{REQUEST_FILENAME}" matchType="IsFile" negate="true"/>
<add input="{REQUEST_FILENAME}" matchType="IsDirectory" negate="true"/>
</conditions>
<action type="Rewrite" url="pay.php?s={R:1}"/>
</rule>
更新日志
2024/05/01:
1.更换全新的手机版支付页面风格
2.聚合收款码支持填写备注
3.后台支付统计新增利润、代付统计
4.删除结算记录支持直接退回商户金额
2024/03/31:
1.商户支付统计支持日期范围查询
2.修复进件商户聚合收款码支付问题
© 版权声明
THE END
暂无评论内容