比如在一个项目中有前台与后台两个模块,需要使用不同的入口文件。同时希望前台使用默认的index.php的入口。
关键的配置如下:
if (!-e $request_filename) {
rewrite /plugins.php(.*)$ /plugins.php?s=/$1 last;
rewrite /admin.php(.*)$ /admin.php?s=/$1 last;
rewrite ^(.*)$ /index.php?s=/$1 last;
break;
}