PHPで301 リダイレクトを実装するコードを紹介します。
PHPファイルに下記のコードを記述します。
<?php
header( "HTTP/1.1 301 Moved Permanently" );
header( "Location: (リダイレクト先URL)" );
?>
<?php
header( "HTTP/1.1 301 Moved Permanently" );
header( "Location: http://www.ipentec.com/" );
?>