源码介绍
- 先用D盾扫了后台如图
- 目前本人也在运营,无BUG
- 测试环境:Nginx+PHP7.4+MySQL5.6
前台截图
后台截图
文字教程
- 1.添加网站以及数据库php使用7.4
- 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;
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;
}
- 4.访问域名安装即可
- 默认后台地址/admin 账号admin密码123456
视频教程
© 版权声明
文章版权归作者所有,未经允许请勿转载。
THE END
暂无评论内容