xiao9469 发表于 2024-12-27 14:52:33

保存一份zblog放在二级目录下的伪静态规则

避免忘记了,也让更多人看到,解决问题。

请不要移到干货板块,谢谢。

修改二级目录的路径/blog/ 就可以了。

可以避免/blog 不带斜杠/的情况打不开显示404
location /blog/ {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 (.*) /blog/index.php;}}
页: [1]
查看完整版本: 保存一份zblog放在二级目录下的伪静态规则