我使用元刷新,但它不起作用'Safari'。我该怎么办?
<meta http-equiv="refresh" content="5;URL='http://example.com/'">
答案 0 :(得分:0)
Safari不支持..而且你并不是唯一一个问过这个问题的人。 有两种可能性:
希望这有帮助!
答案 1 :(得分:0)
根据我在Google上发现的内容;这可能是Safari过去的一个错误,但很多人声称已经解决了。
还有someone提到可能是在Safari中禁用了此特定标头。
如果以上都不起作用,您可以随时使用javascript进行重定向:
function redirect()
{
setTimeout(function(){window.location='otherpage.html'},5000);//5 secs
}
window.onload=redirect;