14 lines
359 B
HTML
14 lines
359 B
HTML
<!DOCTYPE html>
|
|
<html lang="zh-CN">
|
|
<head>
|
|
<meta charset="UTF-8" />
|
|
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
|
<title>页面跳转中</title>
|
|
</head>
|
|
<body>
|
|
<script>
|
|
window.location.replace('/#/index' + (window.location.search || '') + (window.location.hash || ''));
|
|
</script>
|
|
</body>
|
|
</html>
|