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.
我已经知道如何使用 a 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/");