Having scoured these forums I've found many a post that skirts the issue but none that smack it on the head with a hammer.
I'm a blogger with a little experience, I've been using Wordpress for many a moon and it has been said to
has a reputation for being very user friendly
An example of why it is so user friendly: You want to setup a hierarchy of pages you write the page pick a parent and it works out the URL for you. You write a page of the root with 'about' as its 'node' then a sub page with 'why' as its node and parent of 'about' and you get {root}/about/ and {root}/about/why/ respectively. Its done and dusted straight of the initial install in 60 seconds and 40 secods of that was typing the pages!
So you can do something similar in Drupal, but if you type in {root}/why/ you go to what would be displayed at {root}/about/why/.
So what do you need to do this in Drupal? You need the path.module and the pathauto.module. But finding the documentation on what settings to get the system to work like wordpress is near impossible, but finding implementations of this in drupal the real world is easy. And still if you type in {root}/why/ you go to what would be displayed at {root}/about/why/.
So the questions are:
Comments
Why doesn't Drupal work out
Like you, I wish it worked that way (determining url from a hierarchy) but (AFAIK) druapl implements this as basically just a bunch of aliases. This URL -> That URL, so it doesn't do what you think it does.