Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
PHP を使用したページを、そのシーケンスに基づいて別の URL にリダイレクトする方法を探しています。
http://example.com/re.php?=http://google.com
ページはgoogle.comにリダイレクトされます。どうすればいいですか?
URLはもっと似ているでしょうhttp://example.com/re.php?url=http://google.com
http://example.com/re.php?url=http://google.com
re.php次のようになります。
re.php
header('Location: ' . $_GET['url']);
ただのガイドラインです。