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

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

安装步骤:
源码上传至虚拟机或者服务器
访问域名/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>
隐藏内容,输入密码后查看
密码在官方交流群200035494@Q群管家即可查看群满可以进2群77054041
© 版权声明
THE END
喜欢就支持一下吧!
点赞807 分享