彩虹易支付最新版原版无更改最新版源码,官方原版源码,无更改无后门,放心使用。

写在前面
有任何问题可联系QQ:3288637559 
  QQ交流群:884250547
源码下载
环境部署
推荐使用宝塔、AMH等面板一键部署服务器环境。
伪静态规则
Nginx伪静态规则
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;
}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>      
        
      
    
      
          
          
评论 (0)