リダイレクトの履歴

HTTPヘッダを自分で吐く

httpヘッダで301

apacheに任せる

Redirect permanent /hogehoge http://example.com/hoge

RedirectMatch とかもある

PHPリダイレクト

header("Location: $url");

これだと302(一時的な移動)になる

header("HTTP/1.1 301 Moved Permanently");
header("Location: $url");

これで301(恒久的な移動になる)