Loading... ### 简介 彩虹易支付是一个支付系统,它提供了多种支付方式,包括支付宝、微信、银联等,旨在为用户提供便捷的支付体验。 ### 特点 - **支付方式**:支持支付宝、微信、银联、QQ钱包、快钱等主流支付渠道,适用于PC网页支付、扫码支付、手机APP支付、移动HTML5支付、微信公众号支付等多种场景。 - **安全性**:采用HTTPS传输加密,REST API调用数字签名验证,ACL权限控制,严格保护客户数据的安全和隐私。 - **易用性**:通过简单的页面配置,可以替代复杂繁琐的人工资金结算业务,提高业务实时性,降低错误。 ### 伪静态设置 Nginx伪静态: ```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伪静态: ```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版伪静态: ```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> ``` ### 截图  ### 资源获取 --- |  | | :----------------------------------------------------------------------------------------------------------: | | 使用微信扫描上方小程序码或者用微信搜索小程序【多多口令】,输入口令【***114924***】后领取资源下载地址 | ♚轻刻图床♚ ♚随机密码♚ ♚广告位♚ ♚广告位♚ ♚广告位♚ ♚广告位♚ ♚广告位♚ ♚广告位♚ 最后修改:2024 年 10 月 26 日 © 允许规范转载