nginx 重写 隐藏index.php

修改 nginx.conf 文件
location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } }
原文地址:https://www.cnblogs.com/zhanghanwen16/p/8624276.html