Introduction
Virtual path prefixes let you group routes under a common starting path. This keeps your code organized and easy to manage.
You want to group all user-related routes under '/users' like '/users/login' and '/users/profile'.
You have an admin section and want all admin routes to start with '/admin'.
You want to mount a set of routes from another file or module under a specific path.
You want to serve static files from a specific URL path prefix.