首页 > 技术文章 > nginx thinkphp5 多入口配置

JANCHAN 2019-06-12 19:15 原文

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;
		}
    }

  

推荐阅读