This commit is contained in:
aozhiwei 2022-03-09 13:52:56 +08:00
parent 2ddb3a8a8e
commit 77634ab61b
2 changed files with 20 additions and 0 deletions

17
loader/index.html Normal file
View File

@ -0,0 +1,17 @@
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01//EN" "http://www.w3.org/TR/html4/strict.dtd">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8">
<meta http-equiv="Cache-Control" content="no-cache, no-store, must-revalidate" />
<meta http-equiv="Pragma" content="no-cache" />
<meta http-equiv="Expires" content="0" />
<title>loading</title>
</head>
<body>
<script type="text/javascript">
(function () {
var _dc = (new Date()).valueOf() + Math.random();
document.write("<script type='text/javascript' src='loader.js?_dc=" + _dc + "'><\/script>");
})();
</script>
</body>
</html>

3
loader/loader.js Normal file
View File

@ -0,0 +1,3 @@
(function () {
window.location.href = "1.0.1/index.html";
})();