Concept Flow - RESTful resource routes
Client sends HTTP request
Rails router matches URL + HTTP verb
Select controller and action
Controller processes request
Render view or redirect
Send HTTP response back to client
Rails uses the URL and HTTP method to pick the right controller action, which then handles the request and sends back a response.