rsnext/examples/catch-all-routes
2022-05-27 21:21:40 +00:00
..
components Add catch all routes example and a link to it in docs (#10202) 2020-01-27 13:29:05 -05:00
pages Add catch all routes example and a link to it in docs (#10202) 2020-01-27 13:29:05 -05:00
.gitignore Added .gitignore to examples that are deployed to vercel (#15127) 2020-07-16 10:52:23 -04:00
package.json Clean up examples package.json (#27121) 2021-07-12 19:58:03 +00:00
README.md Update pnpm create next-app for latest pnpm 6 and 7 (#37254) 2022-05-27 21:21:40 +00:00

Catch All Routes Example

This example shows how to use Catch all routes in Next.js, which allows a dynamic route to catch all paths.

The catch all page is in pages/post/[...slug], it matches any path after /post, like the following:

  • /post/first-post,
  • /post/2020/first-post
  • /post/2020/first-post/with/catch/all/routes
  • Anything that matches the glob /post/**

You can use next/link as displayed in this example to route to these pages client side.

Deploy your own

Deploy the example using Vercel or preview live with StackBlitz

Deploy with Vercel

How to use

Execute create-next-app with npm, Yarn, or pnpm to bootstrap the example:

npx create-next-app --example catch-all-routes catch-all-routes-app
# or
yarn create next-app --example catch-all-routes catch-all-routes-app
# or
pnpm create next-app --example catch-all-routes catch-all-routes-app

Deploy it to the cloud with Vercel (Documentation).