本文旨在提供学习交流之用,严禁用于商业目的。如需商业化应用,请通过官方渠道购买正版软件,以获得更稳定、可靠的更新和售后服务。官方购买链接为:https://pay.cccyun.cc。彩虹支付系统,作为最新推出的支付解决方案,以其长期稳定运行和全面开放的源代码而备受推崇。该系统完全开源,无任何加密措施,确保用户能够自由地进行定制和扩展。
安装步骤:
源码上传至虚拟机或者服务器
访问域名/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;
}
Apache伪静态
<IfModule mod_rewrite.c>
Options +FollowSymlinks
RewriteEngine On
RewriteCond %{REQUEST_FILENAME} !-d
RewriteCond %{REQUEST_FILENAME} !-f
RewriteRule ^(.[a-zA-Z0-9\-\_]+).html$ index.php?mod=$1 [QSA,PT,L]
RewriteRule ^pay/(.*)$ pay.php?s=$1 [QSA,PT,L]
</IfModule>
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>
同步更新截图演示
转载请注明:汇站网 » (汇站首发)彩虹易支付最新版+长期同步更新