ロード時に別のページにリダイレクトする基本的なHTMLページを設定することは可能ですか?
ロード時に別のページにリダイレクトする基本的なHTMLページを設定することは可能ですか?
回答:
使ってみてください:
<meta http-equiv="refresh" content="0; url=http://example.com/" />
注:ヘッドセクションに配置します。
さらに、古いブラウザでは、正しく更新されない場合に備えてクイックリンクを追加すると、次のようになります。
<p><a href="http://example.com/">Redirect</a></p>
として表示されます
これにより、追加のクリックで目的の場所に到達できます。
0
0秒後に更新することを意味します。何が起こっているかを知るために、ユーザーにもう少し時間を与えることができます。
私はmetaとJavaScriptコードの両方を使用し、念のためリンクを設定します。
<!DOCTYPE HTML>
<html lang="en-US">
<head>
<meta charset="UTF-8">
<meta http-equiv="refresh" content="0; url=http://example.com">
<script type="text/javascript">
window.location.href = "http://example.com"
</script>
<title>Page Redirection</title>
</head>
<body>
<!-- Note: don't tell people to `click` the link, just tell them that it is a link. -->
If you are not redirected automatically, follow this <a href='http://example.com'>link to example</a>.
</body>
</html>
完全を期すために、可能であればサーバーのリダイレクトを使用するのが最善の方法だと思うので、301ステータスコードを送信します。これは、Apache.htaccess
を使用するファイル、またはWordPressを使用する多数のプラグインを介して簡単に実行できます。私はすべての主要なコンテンツ管理システム用のプラグインもあると確信しています。また、サーバーにインストールされている場合、cPanelは301リダイレクトの設定が非常に簡単です。
body
タグなどを落とすのはあまり好きではありません。おそらくそれは検証され、おそらく一般的なブラウザで動作します。問題を引き起こすいくつかのフリンジケースがあると私は確信しています、そして利益は小さいようです。
click here
スクリーンリーダーの操作が難しくなるため、リンクを使用することはお勧めしません。リンクはリンク先を説明するテキストにする必要があります。そうすることで、ユーザーはリンク先に到達する前にどこに到着するかがわかりますが、それを操作します。
私は考えもあなたを助けるために正規のリンクを追加SEOの人々を:
<link rel="canonical" href="http://www.example.com/product.php?item=swedish-fish"/>
これは、以前のすべての回答と、.htaccessを介したHTTPリフレッシュヘッダーを使用した追加のソリューションの合計です
1. HTTPリフレッシュヘッダー
まず、.htaccessを使用して、次のような更新ヘッダーを設定できます。
Header set Refresh "3"
これは、PHPでheader()
関数を使用するのと同じ「静的」です
header("refresh: 3;");
このソリューションはすべてのブラウザでサポートされているわけではないことに注意してください。
2. JavaScript
代替URLの場合:
<script>
setTimeout(function(){location.href="http://example.com/alternate_url.html"} , 3000);
</script>
代替URLなし:
<script>
setTimeout("location.reload(true);",timeoutPeriod);
</script>
jQuery経由:
<script>
window.location.reload(true);
</script>
3.メタリフレッシュ
JavaScriptとリダイレクトヘッダーへの依存が望ましくない場合は、メタリフレッシュを使用できます。
代替URLの場合:
<meta http-equiv="Refresh" content="3; url=http://example.com/alternate_url.html">
代替URLなし:
<meta http-equiv="Refresh" content="3">
使用<noscript>
:
<noscript>
<meta http-equiv="refresh" content="3" />
</noscript>
必要に応じて
Billy Moonが推奨するように、何か問題が発生した場合の更新リンクを提供できます。
自動的にリダイレクトされない場合: <a href='http://example.com/alternat_url.html'>Click here</a>
資源
setTimeout
文字列で呼び出さないでください。代わりに関数を渡します。
最新のWeb標準に従うことを楽しみにしている場合は、プレーンHTMLメタリダイレクトを回避する必要があります。サーバー側のコードを作成できない場合は、JavaScriptリダイレクトを選択する必要があります代わりに。
JavaScriptが無効なブラウザーをサポートするには、noscript
要素にHTMLメタリダイレクト行を追加します。noscript
と組み合わせて、ネストされたメタリダイレクトcanonical
タグが同様にあなたの検索エンジンのランキングを助けます。
リダイレクトループを避けたい場合は、 location.replace()
JavaScript関数ます。
適切なクライアント側のURLリダイレクトコードは次のようになります(Internet Explorer 8以下の修正と遅延なし)。
<!-- Pleace this snippet right after opening the head tag to make it work properly -->
<!-- This code is licensed under GNU GPL v3 -->
<!-- You are allowed to freely copy, distribute and use this code, but removing author credit is strictly prohibited -->
<!-- Generated by http://insider.zone/tools/client-side-url-redirect-generator/ -->
<!-- REDIRECTING STARTS -->
<link rel="canonical" href="https://stackoverflow.com/"/>
<noscript>
<meta http-equiv="refresh" content="0; URL=https://stackoverflow.com/">
</noscript>
<!--[if lt IE 9]><script type="text/javascript">var IE_fix=true;</script><![endif]-->
<script type="text/javascript">
var url = "https://stackoverflow.com/";
if(typeof IE_fix != "undefined") // IE8 and lower fix to pass the http referer
{
document.write("redirecting..."); // Don't remove this line or appendChild() will fail because it is called before document.onload to make the redirect as fast as possible. Nobody will see this text, it is only a tech fix.
var referLink = document.createElement("a");
referLink.href = url;
document.body.appendChild(referLink);
referLink.click();
}
else { window.location.replace(url); } // All other browsers
</script>
<!-- Credit goes to http://insider.zone/ -->
<!-- REDIRECTING ENDS -->
<meta http-equiv="refresh"
、W3Cで廃止された理由の詳細が含まれています。
METAの「リダイレクト」を使用できます。
<meta http-equiv="refresh" content="0; url=http://new.example.com/address" />
またはJavaScriptリダイレクト(すべてのユーザーがJavaScriptを有効にしているわけではないため、常にバックアップソリューションを準備してください)
<script language="javascript">
window.location = "http://new.example.com/address";
</script>
ただし、オプションがある場合は、mod_rewriteを使用することをお勧めします。
jQuery Mobileアプリケーションの操作中に問題が見つかりました。場合によっては、メタヘッダータグがリダイレクトを適切に実行できないことがあります(jQuery Mobileは各ページのヘッダーを自動的に読み取らないため、JavaScriptを配置しても、ラップしない限り効果がありません。複雑)。この場合の最も簡単な解決策は、次のように、JavaScriptリダイレクトをドキュメントの本文に直接挿入することです。
<html>
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<meta http-equiv="refresh" content="0;url=myURL" />
</head>
<body>
<p>You are not logged in!</p>
<script language="javascript">
window.location = "myURL";
</script>
</body>
</html>
これはすべての場合にうまくいくようです。
すべてのタイプのページで機能する簡単な方法meta
は、ヘッドにタグを追加することです。
<html>
<head>
...
<meta HTTP-EQUIV="REFRESH" content="seconds; url=your.full.url/path/filename">
...
</head>
<body>
Don't put much content, just some text and an anchor.
Actually, you will be redirected in N seconds (as specified in content attribute).
That's all.
...
</body>
</html>
HTTPステータスコード301または302によって自動リダイレクトできます。
PHPの場合:
<?php
Header("HTTP/1.1 301 Moved Permanently");
Header("Location: http://www.redirect-url.com");
?>
ユーザーをindex.htmlからログインページの相対 URLにリダイレクトするスクリプトを使用しています
<html>
<head>
<title>index.html</title>
</head>
<body onload="document.getElementById('lnkhome').click();">
<a href="/Pages/Login.aspx" id="lnkhome">Go to Login Page<a>
</body>
</html>
ちょうど良い尺度のために:
<?php
header("Location: example@example.com", TRUE, 303);
exit;
?>
スクリプトの上にエコーがないことを確認してください。エコーがない場合は無視されます。 http://php.net/manual/en/function.header.php
これは、私が欲しかったすべてのリダイレクトソリューションですが、カットアンドペーストするためのきれいなスニペットでは見つかりませんでした。
このスニペットには多くの利点があります。
使い方:
サイト全体を移行した場合は、古いサーバーで元のサイトを停止し、このファイルをルートフォルダーのデフォルトのindex.htmlファイルとして別のサイトを作成します。サイトの設定を編集して、404エラーがこのindex.htmlページにリダイレクトされるようにします。これは、下位レベルのページへのリンクなどを使用して古いサイトにアクセスするすべてのユーザーをキャッチします。
次に、開始スクリプトタグに移動して、oldsiteおよびnewSite Webアドレスを編集し、必要に応じて秒の値を変更します。
Webサイトを保存して開始します。仕事完了-コーヒーの時間。
<!DOCTYPE html>
<html>
<head>
<META HTTP-EQUIV="CACHE-CONTROL" CONTENT="NO-CACHE">
<META HTTP-EQUIV="PRAGMA" CONTENT="NO-CACHE">
<META HTTP-EQUIV="EXPIRES" CONTENT="Mon, 22 Jul 2002 11:12:01 GMT">
<style>
body { margin: 200px; font: 12pt helvetica; }
</style>
</head>
<body>
</body>
<script type="text/javascript">
// Edit these to suit your needs.
var oldsite = 'http://theoldsitename.com'
var newSite = "https://thenewsitename.com";
var seconds = 20; // countdown delay.
var path = location.pathname;
var srch = location.search;
var uniq = Math.floor((Math.random() * 10000) + 1);
var newPath = newSite + path + (srch === '' ? "?" + uniq : srch + "&" + uniq);
document.write ('<p>As part of hosting improvements, the system has been migrated from ' + oldsite + ' to</p>');
document.write ('<p><a href="' + newPath + '">' + newSite + '</a></p>');
document.write ('<p>Please take note of the new website address.</p>');
document.write ('<p>If you are not automatically redirected please click the link above to proceed.</p>');
document.write ('<p id="dvCountDown">You will be redirected after <span id = "lblCount"></span> seconds.</p>');
function DelayRedirect() {
var dvCountDown = document.getElementById("dvCountDown");
var lblCount = document.getElementById("lblCount");
dvCountDown.style.display = "block";
lblCount.innerHTML = seconds;
setInterval(function () {
seconds--;
lblCount.innerHTML = seconds;
if (seconds == 0) {
dvCountDown.style.display = "none";
window.location = newPath;
}
}, 1000);
}
DelayRedirect()
</script>
</html>
<noscript>
JSが無効になっている場合は、JavaScriptを使用してリダイレクトします。
<script>
window.location.replace("https://google.com");
</script>
<noscript>
<a href="https://google.com">Click here if you are not redirected automatically.</a>
</noscript>
このコードを使用してください:
<meta http-equiv="refresh" content="0; url=https://google.com/" />
注意してください: ヘッドタグに入れてください。
あなたはそれをjavascriptで行うことができます:
location = "url";