nginx rewrite post data

前端 未结 3 1248
时光说笑
时光说笑 2020-12-18 02:34

I need to preserve the POST data to a different url

The rewrite works but the post data is lost

need to post data from user_info.php to userhistory

3条回答
  •  无人及你
    2020-12-18 03:01

    In my conf I use try_files with regex

    for example

    location /yourfolder/(?.*) {
        try_files $uri /yourfolder/index.php?r=$specialRequest;
        return 307 https://$host/yourfolder/index.php?r=$specialRequest; // it also work
    }
    

提交回复
热议问题