源码介绍
- 全开源版本,D盾扫描
- 具体干啥的就不解释了,懂得都懂
- 目前本人也在运营,无BUG
- 测试环境:Nginx+PHP7.2+MySQL5.6(官方推荐配置PHP7.1+MySQL5.6)
前台截图
后台截图
文字教程
1.添加网站以及数据库
2.上传源码
3.配置网站伪静态
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;
}
4.访问域名安装即可
视频教程
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容