ESSAY / NOTE

thinkphp5.0 nginx 伪静态URL重写

Nginx 下尽量不要用 if 可以改写为:
location / {
    ...
    try_files $uri $uri/ /index.php?s=$uri&$args;
}