ページリダイレクトについて
- May 21, 2006 1:31 AM
- web
ページリダイレクトの方法で、今まで知らなかったやり方を見つけた。
この際だから知っている範囲で、リダイレクトの方法を書いておこう。
(phpとmetaタグ以外のソースはうろ覚えで適当に書いたので動くか試してない...)
昨日知った、htmlのmetaタグで。...
<head>
<meta http-equiv="Content-Type" content="text/html; charset=UTF-8">
<title>Redirection</title>
<META HTTP-EQUIV="refresh" CONTENT="0; URL=index.php">
</head>
<body>
<a href="index.php">Click here</a>to go ahead.
...
.httaccessで。Redirect permanent index.php
phpで。
(ファイル冒頭に書きます)<?php
header("Location: https://www.eosw.net/scripts/");
?>
...
JavaScriptで。...
<head>
...
<script language="javascript">
<!--
function redirect(){
location.href = "index.php";
}
function waitRedirect(){
var waitTime = 3000;
setTimeout('redirect()', waitTime);
}
//-->
</script>
</head>
<body onload="Javascript:void();waitRedirect()">
...
metaタグの解析実装って標準化されてるのかなぁ。気になる。
Trackbacks:0
- TrackBack URL for this entry
- https://w3neu.net/mt/mt-tb.cgi/40
- Listed below are links to weblogs that reference
- ページリダイレクトについて from Sequentially Altered Days
- Categories
- Archives
- Syndication
Comments:0