私のローカルホストでcurlを使用してリダイレクトをテストしています。このコマンドを実行すると:
$curl "test.test.com/landing/0192"
私はこの出力を取得します:
<!DOCTYPE HTML PUBLIC "-//IETF//DTD HTML 2.0//EN">
<html><head>
<title>302 Found</title>
</head><body>
<h1>Found</h1>
<p>The document has moved <a href="http://redirect.redirect.com/landing?xid=0192&tt=192">here</a>.</p>
<hr>
<address>Apache/2.2.17 (Fedora) Server at spencervm.adverplex.com Port 80</address>
</body></html>
今私が実行した場合http://redirect.redirect.com/landing?xid=0192&tt=192"
希望の目的地に着きます。したがって、基本的に私がしたいのは、302エラーをオフにして、リダイレクト先のページにリダイレクトすることだけです。
curlはデフォルトではリダイレクトを追跡しませんが、これはWebサーバーの問題ではありません。 HTTPクライアントは、リダイレクト応答の処理を実装する責任があります。
-L
フラグを追加します。
curl -L "test.test.com/landing/0192"