thinkphp二级项目目录配置nginx伪静态
目项目名称为thinkphp
location /thinkphp/ {
if (!-e $request_filename){
rewrite ^/thinkphp/(.*)$ /thinkphp/public/index.php?s=$1 last;
}
}
目项目名称为thinkphp
location /thinkphp/ {
if (!-e $request_filename){
rewrite ^/thinkphp/(.*)$ /thinkphp/public/index.php?s=$1 last;
}
}