rsnext/examples/rewrites/next.config.js
Robin Tom 5218e76818
Example for Redirects (Custom routes) (#15411)
This PR adds example for #15073 
> - [ ] `redirects` For [docs/api-reference/next.config.js/redirects.md](https://github.com/vercel/next.js/blob/canary/docs/api-reference/next.config.js/redirects.md)
2020-08-05 22:20:49 +00:00

29 lines
663 B
JavaScript

module.exports = {
async rewrites() {
return [
{
source: '/team',
destination: '/about',
},
{
source: '/about-us',
destination: '/about',
},
// Path Matching - will match `/post/a` but not `/post/a/b`
{
source: '/post/:slug',
destination: '/news/:slug',
},
// Wildcard Path Matching - will match `/blog/a` and `/blog/a/b`
{
source: '/blog/:slug*',
destination: '/news/:slug*',
},
// Rewriting to an external URL
{
source: '/docs/:slug',
destination: 'http://example.com/docs/:slug',
},
]
},
}