彩虹易支付最新可用易支付程序长期可用【长期更新】

彩虹最新可用易支付程序长期可用彩虹易支付全开最新源码全新完全开源无任何加密易支付程序

安装步骤:

源码上传至虚拟机或者服务器
访问域名/install.php 安装,
后台地址: 域名/admin 账号 admin 密码 123456
删除install.lock即可重新安装

伪静态

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>
------本页内容已结束,喜欢请分享------
彩虹易支付最新可用易支付程序长期可用【长期更新】-晴天笔记
彩虹易支付最新可用易支付程序长期可用【长期更新】
此内容为付费资源,请付费后查看
9.9
限时特惠
300
立即购买
您当前未登录!建议登陆后购买,可保存购买订单
付费资源
© 版权声明
THE END
喜欢就支持一下吧
点赞12 分享