不知鱼耶

导航

tp项目嵌套,nginx配置

//原来tp项目一

location / {
if (!-e $request_filename){
rewrite ^(.*)$ /index.php?s=$1 last; break;
}
}

//在tp项目一中新建目录demo,注意目录名称不能与项目一重复,再单独部署一个tp项目
location /demo {
if (!-e $request_filename){
rewrite ^/demo(.*)$ /demo/index.php?s=$1 last; break;
}
}

posted on 2019-12-18 11:16  不知鱼耶  阅读(338)  评论(0编辑  收藏  举报