Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
の使い方はすでに知っていますmeta refreshが、問題は一部のブラウザで戻るボタンが壊れてしまうことです。
meta refresh
メタ更新タグは次のとおりです。
<meta http-equiv="refresh" content="5;URL='http://google.com/'">
これに代わるものがあるかどうか疑問に思っていましたか?
条件付きでリダイレクトすることもできるので、PHP をお勧めします。
Example.COM にリダイレクト:
<?php header("Location: http://example.com"); ?>
問題のものと非常によく似た機能を持つJavaスクリプトリダイレクトを使用してください:
window.location.replace("http://google.com/");