typecho伪静态规则开启反向代理无效的解决办法

27

将伪静态规则设置为如下

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

其中onedrive改成自己的反代目录,如有多个用|分开,如onedrive|api

[scode type="yellow"]仅适用于nginx[/scode]