演示站后台地址:http://42698.4aq.cn/admin
安装搭建说明
服务器系统:Linux+宝塔
亲测环境:Nginx1.16.1+PHP5.6+Mysql5.5
修改数据库配置文件:/config/database.php
运行目录设置:/public
nginx伪静态设置
location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}