Take the example question https://stackoverflow.com/questions/3563957/https-url-path-and-query-string
.
As you can see, we have the segment /questions
followed by what I'm assuming is the question ID, /3563957
. In my head, this would indicate a folder structure like:
.
└── questions/
└── 3563957
However, I can't imagine a directory is being generated for each question. To me, this seems like a query string that is being used as a URL segment. How is this accomplished?