简介
这套是最新版的易支付免授权版的源码,相对比老版更加的简洁了,功能也不输之前的。好了,废话不多说,咱直接上实操。
搭建流程
伪静态
location / {
if (!-e $request_filename) {
rewrite ^/(.[a-zA-Z0-9\-\_]+).html$ /index.php?mod=$1 last;
}
rewrite ^/pay/(.*)$ /pay.php?s=$1 last;
rewrite ^/api/(.*)$ /api.php?s=$1 last;
rewrite ^/doc/(.[a-zA-Z0-9\-\_]+).html$ /index.php?doc=$1 last;
}
location ^~ /plugins {
deny all;
}
location ^~ /includes {
deny all;
}
源码截图
© 版权声明
THE END
暂无评论内容