オープンリダイレクト 01 - yujitounai/helloworld GitHub Wiki
単純なオープンリダイレクト
<?php
if(isset($_GET['url'])){
$loc="location: ".$_GET['url'];
header($loc);
}else {
echo "usage: ?url=page";
echo "<br>";
}
?>
<div class="box">
<form method="get" action="">url
<input name="url" type="text">
<input type="submit">
</form>
</div>
openredirect-01.php?redir=http://bogus.jp/