我已经知道如何使用meta refresh
,但问题是它在某些浏览器中打破了后退按钮。
以下是元刷新标记:
<meta http-equiv="refresh" content="5;URL='http://google.com/'">
我想知道是否有替代方案?
答案 0 :(得分:0)
使用javascript重定向,其功能与问题中的重定向非常相似:
window.location.replace("http://google.com/");
答案 1 :(得分:0)
我推荐PHP,因为你也可以有条件地重定向。
重定向EXAMPLE.COM:
<?php header("Location: http://example.com"); ?>