-
Notifications
You must be signed in to change notification settings - Fork 0

Description
Short description of the enhancement
The page tree is great, but when you want a different url structure it gets a little complicated.
For example, I'm building a music related site and the tree looks like this currently:
home
-artists
--artist-name
---song1
---song2
---song3
This would give me the following url structure example.com/artists/artist-name/song1, but I want it to be example.com/artist-name/song1. I know it can be achieved with url segments, but that just adds more complexity.
While thinking how to best organize my pages I got this idea of fake pages. They are just containers that help organize the page tree, they don't affect the url structure.
In the tree example above the artists page would be a fake page, but its "children" would be actually children of home, so this page has no other purpose than making the page tree cleaner.
Why would the enhancement be useful to users?
It would allow for a more organized page tree while keeping the url structure simple.