mirror of
https://gitee.com/mirrors/AllinSSL.git
synced 2026-03-08 07:41:10 +08:00
19 lines
520 B
HTML
19 lines
520 B
HTML
<!doctype html>
|
||
<html lang="zh-CN">
|
||
<head>
|
||
<meta charset="UTF-8" />
|
||
<link rel="icon" href="./favicon.ico" />
|
||
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
|
||
<title>AllinSSL</title>
|
||
<script>
|
||
// SPA路由回退处理
|
||
// 将当前路径存储到sessionStorage,然后重定向到根路径
|
||
sessionStorage.setItem('redirectPath', location.pathname + location.search + location.hash);
|
||
location.replace('/');
|
||
</script>
|
||
</head>
|
||
<body>
|
||
<div id="app"></div>
|
||
</body>
|
||
</html>
|