0
所以我張貼數據到另一個系統和我想檢索「重定向URL」,該系統響應回來,2秒後重定向用戶,但我得到:我收到「請求的URL未找到...」與cURL錯誤。有任何想法嗎?
請求的URL /somescript.aspx在這個服務器上沒找到。
任何想法我做錯了什麼?或者還有其他什麼玩法?
<?php
$strURL = 'http://someplace.com/somescript.aspx';
$fields_string = implode('&', (array)$_SESSION['apply']);
$resURL = curl_init();
curl_setopt($resURL, CURLOPT_URL, $strURL);
curl_setopt($resURL, CURLOPT_POST, true);
curl_setopt($resURL, CURLOPT_POSTFIELDS, $fields_string);
curl_setopt($resURL, CURLOPT_HEADER, TRUE);
curl_setopt($resURL, CURLOPT_FOLLOWLOCATION, FALSE);
$response = curl_exec($resURL);
$RedirectLocation = curl_getinfo($resURL, CURLINFO_EFFECTIVE_URL);
unset($_SESSION['apply']); ?>
<script type="text/javascript">
$(function() {
setTimeout(function() {
window.location.href = "<?php echo $RedirectLocation; ?>";
}, 2000)
});
</script>
太好了。我會嘗試。但是,將修復/更正「請求的網址」錯誤? – FrankO