Nginx伪静态配置 location / { if (!-e $request_filename){ rewrite^(.*)$/index.php?s=$1last;break; } } 全选代码复制