2026年9月

typecho伪静态规则:

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

如果 Typecho 装在二级目录(比如 /blog/)则要写成:

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

版权所有 © i1978.com 豫ICP备2025110056号-1