非常好用的一款易支付系统。
AP文档及SDK文件也都一起打包,配备了视频搭建教程及图文搭建教程。
搭建安装
环境:Nginx 1.20.1+MySQL 5.6.50+PHP-7.0
创建网站,上传源码至根目录,解压
数据库信息修改:config.php
上传数据库文件,导入
设置网站伪静态规则
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;
}
后台地址:域名/admin admin 123456