我构建了一个教育平台,并将所有文件存储在名为2016的服务器上的文件夹中。我使用index.html文件将流量重定向到2016文件夹。我刚刚更新了所有文件并决定将它们放在2018文件夹中。当我更新index.html文件以重定向到2018年时,它会继续转到2016文件夹。在Firefox上,重定向有效,但chrome很顽固。发生了什么事?
这是index.html文件中的代码:
<!DOCTYPE html>
<html>
<head>
<title>Page Title</title>
</head>
<body>
<script>
window.location.href = "2018/index.html";
</script>
</body>
</html>
答案 0 :(得分:0)
最好不要使用javascript进行重定向,而是使用普通的html <meta>
标记。
这对于搜索引擎机器人来说要好得多,而且您确信它可以在任何地方使用,包括Internet Explorer和老歌:
// Redirect to http://example.com/ after 5 seconds:
<meta http-equiv="refresh" content="5; url=http://example.com/">
// Redirect to http://example.com/ immediately:
<meta http-equiv="refresh" content="0; url=http://example.com/">