転送(リダイレクト)ページの書き方メモ

<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" lang="ja">
<head>
<meta http-equiv="content-type" content="text/html; charset=utf-8" />
<meta http-equiv="content-language" content="ja" />
<meta name="robots" content="noindex" />
<meta http-equiv="refresh" content="0; url=http://www.example.jp/" />
<title>[タイトル]へへ移動</title>
</head>
<body>
<a href="http://www.example.jp/" style="text-decoration:none">クリックするとページを移動します</a>
</body>
</html>