-
Notifications
You must be signed in to change notification settings - Fork 27.9k
/
Copy pathindex.tsx
54 lines (53 loc) · 1.58 KB
/
index.tsx
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
import styles from "../styles.module.css";
import Link from "next/link";
import Code from "../components/Code";
export default function Index() {
return (
<div className={styles.container}>
<div className={styles.card}>
<h1>Redirects with Next.js</h1>
<hr className={styles.hr} />
<p>
The links below are{" "}
<Link
href="https://nextjs.org/docs/api-reference/next.config.js/redirects"
legacyBehavior
>
<>
custom <Code>redirects</Code>
</>
</Link>{" "}
that redirect an incoming request path to a different destination
path.
</p>
<nav>
<ul className={styles.list}>
<li>
<Link href="/team">Visit /team (redirects to /about)</Link>
</li>
<li>
<Link href="/old-blog/hello-world">
Visit /old-blog/hello-world (redirects to /news/hello-world)
</Link>
</li>
<li>
<Link href="/blog/a/b/hello-world">
Visit /blog/a/b/hello-world (redirects to /news/a/b/hello-world)
</Link>
</li>
<li>
<Link href="/post/123">
Visit /post/123 (redirects to /news/123)
</Link>
</li>
</ul>
</nav>
<p>
Open <Code>next.config.js</Code> to learn more about the redirects
that match the links above.
</p>
<hr className={styles.hr} />
</div>
</div>
);
}