「PHP入門」301、302リダイレクトを実行するサンプル
サンプルコード
//302リダイレクト
$new_url = 'http://www.example.com/’;
header(“Location:$new_url");
サンプルコード
<?php
//301リダイレクト
$http_protocol = $_SERVER['SERVER_PROTOCOL’]; //http
if ( 'HTTP/1.1’ != $http_protocol && 'HTTP/1.0’ != $http_protocol )
$http_protocol = 'HTTP/1.0’;
//301ステータスコード
header(“$http_protocol 301 Moved Permanently");
//リダイレクトURL
$new_url = 'http://www.example.com/’;
header(“Location:$new_url");
?>