Files
fiveq-website-2026/src/pages/index.astro
T
2026-04-07 18:51:20 +08:00

31 lines
929 B
Plaintext

---
/**
* 根路径立即跳转默认语言。不用 Astro.redirect,静态构建否则会生成 2 秒 meta refresh。
*/
import { DEFAULT_LANG } from '../i18n';
const target = `/${DEFAULT_LANG}`;
---
<!DOCTYPE html>
<html lang="zh-CN">
<head>
<meta charset="UTF-8" />
<meta name="viewport" content="width=device-width, initial-scale=1.0" />
<meta http-equiv="refresh" content={`0;url=${target}`} />
<link rel="canonical" href={target} />
<meta name="robots" content="noindex" />
<title>Redirecting…</title>
<script is:inline define:vars={{ target }}>
location.replace(target);
</script>
</head>
<body
style="margin:0;font-family:system-ui,sans-serif;display:grid;place-items:center;min-height:100vh;background:#fffdfb;color:#444"
>
<p style="margin:0;font-size:14px">
<a href={target} style="color:#4b76eb">继续前往首页 →</a>
</p>
</body>
</html>