Last active 3 months ago

RedirectLayout.astro Raw
1---
2const { frontmatter } = Astro.props;
3---
4<!DOCTYPE html>
5<html lang="ko">
6<head>
7 <meta charset="UTF-8">
8 <meta http-equiv="refresh" content={`0;url=${frontmatter.redirect}`}>
9 <title>{frontmatter.title}</title>
10 <link rel="canonical" href={frontmatter.redirect} />
11</head>
12<body>
13 <h1>{frontmatter.title}</h1>
14 <p>자동으로 이동되지 않으면 <a href={frontmatter.redirect}>이 링크</a>를 클릭해주세요.</p>
15</body>
16</html>
index.mdx Raw
1---
2title: Redirecting...
3layout: /src/layouts/RedirectLayout.astro
4redirect: "/eg-bim_guide/ko/guides/introduction"
5---