nginx-静态页面post转get

location / {
    if (!-e $request_filename) {
        rewrite ^/(.*) /index.html break;
    }
    if ($request_method ~ ^(POST)$) {
        rewrite ^/callback.html(.*) http://192.168.1.100:8080/callback.html break;
    }
}

 

转载于:https://my.oschina.net/qiongtaoli/blog/3083571

你可能感兴趣的:(运维)