RESTful URL's
RESTful operations on collections
Use pretty and RESTful URL’s.
GET /places
returns a list of all places
GET /places/new
returns a form to create a new place
POST /places
submits fields for creating a new place
Operate on a Record
GET /places/1 …