Nginx 配置伪静态


0,在需要伪静态的虚拟主机里配置

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