服务器系统:Linux + Centos7.x + 宝塔

亲测环境:Nginx 1.18.0 + PHP7.0 + Mysql8.0

有自助安装程序跟提示操作即可

Nginx伪静态设置
location / {
    if (!-e $request_filename){
        rewrite  ^(.*)$  /index.php?s=$1  last;   break;
    }
}

ID:70878