サイト引っ越し時のメモ
2006年04月09日
ちょっと、引っ越しメモ! php で書くのであれば、
<?php
header("HTTP/1.0 301 Moved Permanently");
header("Location: http://移転後のページ");
?>
.htaccess に書くのであれば、
Redirectpermanent (元ページ) (移転後のページ)
ちょっと、引っ越しメモ! php で書くのであれば、
<?php
header("HTTP/1.0 301 Moved Permanently");
header("Location: http://移転後のページ");
?>
.htaccess に書くのであれば、
Redirectpermanent (元ページ) (移転後のページ)