记thinkphp5在Nginx环境下多入口 隐藏入口文件后缀
Posted Liiu
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了记thinkphp5在Nginx环境下多入口 隐藏入口文件后缀相关的知识,希望对你有一定的参考价值。
找到nginx环境下站点的伪静态规则文件,一般是“域名.conf”。在local /下面添加代码。完整示例:
location / { if (!-e $request_filename) { rewrite /common/(.*)$ /common.php/$1 last; rewrite /api/(.*)$ /api.php/$1 last; rewrite ^(.*)$ /index.php?s=$1 last; break; } }
以上是关于记thinkphp5在Nginx环境下多入口 隐藏入口文件后缀的主要内容,如果未能解决你的问题,请参考以下文章