Optional Catch-all Segments
Answered
Common carp posted this in #help-forum
Common carpOP
Hi guys, I have a question. If I access /shop, will page.tsx in shop folder or [[...slug]] folder be rendered? I have tried to test it but got an error 404. Can anyone help me explain it ?
4 Replies
I think the error is because u have 2 Pages on /shop
And
app/shop/[[...slug]]/page.tsx
And
app/shop/page.tsx
Delete the
app/shop/Page.tsx
Answer
/* all of these urls will be mapped to:
/app/blog/[[...url]]/page.js */
/blog
/blog/one
/blog/one/two
/blog/any/numberOf/params/here
Common carpOP
It worked. Thank you