header('Location: https://www.cyberagent.co.jp/'); exit();
ヘッダーで飛ばします。飛ばし先はスクランブルスクウェア サイバーエージェント!
まー30階でも40階でも特に何とも思わないですが、響きがいいですね。
<head> <script> setTimeout("link()", 0); function link(){ location.href="https://mixi.co.jp/"; } </script> </head>
jsによるリダイレクト。location.hrefで飛ばす。
<head> <meta http-equiv="refresh" content="1;url=https://mixi.co.jp/"> </head>
.htaccessによるリダイレクト
RewriteEngine on RewriteRule ^test.html$ https://mixi.co.jp/ [L,R=301]