2023-04-16 更新 110 阅读

打开 phpstudy 软件,依次点选网站、管理、修改、伪静态,把下面代码复制进去就行

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