リダイレクトの方法一覧
Table of Contents
HTML
<meta http-equiv="refresh" content="0; URL='http://example.com'" />
javascript
window.location.href = "http://example.com";
.htaccess
方法1
RewriteEngine On RewriteBase / RewriteRule ^(.*)$ http://example.com/$1 [R=301,L]
方法2
Redirect 301 / http://example.com
php
header("HTTP/1.1 301 Moved Permanently");//301 の場合 header('Location: http://exapmle.com/'); exit();
perl
print "Location: http://www.futomi.com/\n\n";
HTTP ステータス 301 302 の違い
301: 恒久的な移転
302: 一時的な移転