First of all I want to state that I've just started with Drupal so I'm a noob.
I'll try to explain what I think is a powerful URL and Alias system.
Lets say we have some structured content with some subcontent shared between main sections. The main sections could be Visitor, Customer and Website. Now every main section has it's own menu with subsections. Let's say Visitor has Basic informations, Products. Customer has Products, Reports and Website has Basic information and Contacts. So logically the URL for content should look like this:
1.0 example.com/visitor
1.1 example.com/visitor/basic_informations
1.2 example.com/visitor/products
2.0 example.com/customer
2.1 example.com/customer/products
2.2 example.com/customer/reports
3.0 example.com/website
3.1 example.com/website/basic_informations
3.2 example.com/website/contacts
The content Products in Visitor and Customer, Basic information in Visitor and Website is the same. So it's shared (aliased) between these main sections.
And my question is how to do it Drupal are there any modules or configuration that results in this structure?
What have I found and think that doesn't do the job!
Module Pathauto: Yes it creates alias that is nicer than the ugly node/xx name, but it doesn't care about the parent section so everything look like this:
example.com/visitor
example.com/basic_informations
example.com/products
example.com/customer
example.com/reports
example.com/website
example.com/contacts