AwsLinker/public/index.html
2025-09-16 17:19:58 +08:00

42 lines
1.5 KiB
HTML
Raw Permalink 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">
<meta name="viewport" content="width=device-width, initial-scale=1">
<title>AwsLinker - 专业AWS云服务提供商</title>
<meta name="description" content="AwsLinker是专业的AWS云服务提供商为企业提供云计算、云安全、数字化转型等解决方案。">
<link rel="icon" href="/favicon.ico">
<script>
// 自动重定向到默认语言页面
(function() {
// 检测浏览器语言偏好
const userLang = navigator.language || navigator.userLanguage;
let defaultLocale = 'zh-CN';
// 根据浏览器语言设置默认locale
if (userLang.startsWith('zh-TW') || userLang.startsWith('zh-Hant')) {
defaultLocale = 'zh-TW';
} else if (userLang.startsWith('en')) {
defaultLocale = 'en';
}
// 重定向到对应的语言页面
window.location.replace('/' + defaultLocale + '/');
})();
</script>
<noscript>
<meta http-equiv="refresh" content="0; url=/zh-CN/">
</noscript>
</head>
<body>
<div style="text-align: center; padding: 50px; font-family: Arial, sans-serif;">
<h1>AwsLinker</h1>
<p>正在为您跳转到主页...</p>
<p>
<a href="/zh-CN/">简体中文</a> |
<a href="/zh-TW/">繁體中文</a> |
<a href="/en/">English</a>
</p>
</div>
</body>
</html>