Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

i18n(ko-KR): update routing.mdx #10836

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
11 changes: 9 additions & 2 deletions src/content/docs/ko/guides/routing.mdx
Original file line number Diff line number Diff line change
Expand Up @@ -253,14 +253,17 @@ Astro 구성에서 [영구적으로 이동된 페이지로 사용자를 리디

<p><Since v="2.9.0" /></p>

`redirects` 값을 사용하여 Astro 구성에서 영구 리디렉션 매핑을 지정할 수 있습니다. 대부분의 리디렉션에서 이는 이전 경로를 새 경로로 매핑합니다.
[`redirects`](/ko/reference/configuration-reference/#redirects) 값을 사용하여 Astro 구성에서 영구 리디렉션 매핑을 지정할 수 있습니다.

내부 리디렉션의 경우 이전 경로 경로를 새 경로로 매핑하는 것입니다. Astro v5.2.0부터는 `http` 또는 `https`로 시작하고 [파싱 가능한](https://developer.mozilla.org/en-US/docs/Web/API/URL/canParse_static) 외부 URL로 리디렉션할 수도 있습니다:

```js title="astro.config.mjs" {4-6}
import { defineConfig } from 'astro/config';

export default defineConfig({
redirects: {
'/old-page': '/new-page'
'/old-page': '/new-page',
'/blog': 'https://example.com/blog'
}
});
```
Expand All @@ -285,6 +288,10 @@ export default defineConfig({
'/old-page': {
status: 302,
destination: '/new-page'
},
'/news': {
status: 302,
destination: 'https://example.com/news'
}
}
});
Expand Down