With the common use of REST routes or other schemes, lot of duplicate pages or Ajax entries would be created by default for the same view.

In order to avoid this, Atatus groups the path segments intelligently with a wildcard character "*". This will put pages/ajax of similar view under the same bucket. An example is,

/shopping/user/123
/shopping/user/567

here, 123 and 567 will be grouped into:

/shopping/user/*

There would be cases where you would not want your paths to be grouped or would prefer to have them separate, due to incorrect grouping. To do this, you can add exceptions to the routes in the URL segment whitelists section under your [Project] » Settings » Whitelists. An example is,

/v1/products/
/v2/products/
/v3/products/

the paths will normally be grouped under

/*/products

To avoid this grouping, you can add following contents in whitelist settings of your project.

v1
v2
v3