phpで別ページにリダイレクトする

URLを直打ちの場合

<?php
header('Location: http://hogehoge.com/');
exit;

URLを変数にした場合

<?php
$url = 'http://hogehoge.com/';
header("Location: {$url}");
exit;

headerの中で変数を扱うので、"で括むことで、$urlが展開されます。

http://qiita.com/nenneko/items/ed0c0dadf943651e4f3e