-1

就像做什么header("Location http://url.to/");一样,我想使用 POST 方法进行重定向。我知道cURL可以通过 POST/GET 方法处理发送数据,但我不确定重定向。

帮助表示赞赏。

4

1 回答 1

1
header("HTTP/1.1 307 Temporary Redirect");
header("Location: http://www.***.co.uk/site/index.php");

这将重定向 POST 数据,请参阅我之前的答案:https ://security.stackexchange.com/questions/39564/how-do-i-capture-post-data-then-forward-user-to-another-页/39568#39568

于 2013-08-23T13:55:48.890 回答