zblogphp主站与二级目录是zblog程序伪静态共存Nginx规则

百晓生2025-04-08 11:28:47182

Nginx伪静态规则:


location / {

if (-f $request_filename/index.HTML){

    rewrite (.*) $1/index.html break;

}

if (-f $request_filename/index.php){

    rewrite (.*) $1/index.php;

}

if (!-f $request_filename){

    rewrite (.*) /index.php;

}

}



location /daohang/ {

if (-f $request_filename/index.html){

    rewrite (.*) $1/index.html break;

}

if (-f $request_filename/index.php){

    rewrite (.*) $1/index.php;

}

if (!-f $request_filename){

    rewrite (.*) /daohang/index.php;

}

}

本文链接:http://www.58q.org/b/14.html 转载需授权!

扫一扫二维码,添加客服微信