前言
此源码是我在淘宝29.9买的,因为只是自己用用,不想花300去买正版,经过我测试,这套源码没有任何问题,可以放心使用!
演示图
搭建教程
上传源码到服务器 访问域名进行安装
安装完成后设置伪静态。
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:
RewriteRule ^(.[a-zA-Z0-9\-\_]+).html$ index.php?mod=$1RewriteRule ^pay/(.*)$ pay.php?s=$1
© 版权声明
THE END
暂无评论内容