修改 nginx.conf 文件
location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } }
Posted 张瀚文的博客
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx 重写 隐藏index.php相关的知识,希望对你有一定的参考价值。
修改 nginx.conf 文件
location / { if (!-e $request_filename) { rewrite ^(.*)$ /index.php?s=$1 last; break; } }
以上是关于nginx 重写 隐藏index.php的主要内容,如果未能解决你的问题,请参考以下文章
记录 nginx和php安装完后的URL重写,访问空白和隐藏index.php文件的操作方法
nginx 隐藏index.php 并开启rewrite日志调试