是否有一种方法可以提供与可以在html doc正文中使用的元重定向相同的结果?或者身体对CSS的引用?我一直在寻找,但我能找到的唯一的东西想要利用其他技术。
N.B。这是针对iOS UIWebView所以没有php,我宁愿不加载任何额外的js。
答案 0 :(得分:4)
如果您可以使用Javascript,这样的事情可以帮助您:
<script type="text/javascript">
window.location = "http://www.google.com/";
</script>
检查此链接,了解如何将其放置在可以使用“onclick”或“在正文加载上调用的函数中
http://www.tizag.com/javascriptT/javascriptredirect.php
<强>编辑:强>
另一个好消息是:
答案 1 :(得分:2)
我会同时使用meta和js重定向,也可能使用 rel =“canonical”对SEO感兴趣:
<html>
<head>
<link rel="canonical" href="http://stackoverflow.com/"/>
<script type="text/javascript">
window.location.replace("http://stackoverflow.com");
</script>
<title>Redirection</title>
</head>
<body>
<noscript>
<meta http-equiv="refresh" content="0;URL=https://stackoverflow.com/">
</noscript>
If you are not redirected automatically, follow the <a href='https://stackoverflow.com'>link </a>
</body>
答案 2 :(得分:0)
不需要 onload 事件,无需用户交互即可工作
<!DOCTYPE html>
<html>
<head>
<title>Title of the document</title>
</head>
<body>
<script>
let url = "https://www.w3docs.com";
window.location.href = url;
</script>
</body>
</html>