我有一個頁面,旨在接收來自另一臺服務器的捲曲請求。php curl跟着重定向?
我需要將此捲曲請求格式化爲其他格式。
所以我有這樣的代碼
<?php
$id = (isset($_GET['msgid']) ? $_GET['msgid'] : 'null');
$from = (isset($_GET['from']) ? $_GET['from'] : 'null');
$body = (isset($_GET['content']) ? $_GET['content'] : 'null');
$status = (isset($_GET['status']) ? $_GET['status'] : 'null');
header("location: ../action/receive_message/$id/$from/$body/$status");
?>
所以,如果有人在發動捲曲請求
http://example.com/intercept/test.php?id=123&from=me&body=something;
請問那叫
http://example.com/action/123/me/something/null?
或者如果沒有,我可以得到它的方式嗎?
另一個是。
有沒有一種方法可以在.htaccess中做到這一點? 所以我不必爲此創建一個單獨的文件?
是的,你是正確的,現在會改變。 – Hailwood 2010-11-29 01:02:44