Concept Flow - Why routing maps URLs to actions
User enters URL
Rails router receives URL
Router matches URL pattern
Router finds controller & action
Controller action runs
Response sent back to user
This flow shows how Rails takes a URL, finds the right controller and action, runs it, and sends back a response.