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 多入口配置的主要内容,如果未能解决你的问题,请参考以下文章

Nginx下ThinkPHP5的配置方法详解

thinkphp5在Linux下Nginx配置问题解决

thinkphp5在Linux下Nginx配置问题解决

thinkphp5 - 2 - URL重写

nginx.conf 忽略了 nginx-ingress 配置映射片段

TP3.2 Nginx下配置ThinkPhp多入口访问