Files
AllinSSL/static/build/404.html
2025-07-17 14:02:54 +08:00

19 lines
520 B
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<!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>