nginx thinkphp5 多入口配置
Posted janchan
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了nginx thinkphp5 多入口配置相关的知识,希望对你有一定的参考价值。
location / if (!-e $request_filename) rewrite /admin.php(.*)$ /admin.php?s=/$1 last; #存在admin.php rewrite /index.php(.*)$ /index.php?s=/$1 last; #存在index.php rewrite ^(.*)$ /index.php?s=/$1 last; #不存在index.php break;
以上是关于nginx thinkphp5 多入口配置的主要内容,如果未能解决你的问题,请参考以下文章