The default url is shortened. So you can have a HomeController, and the default action of Index will show up as a url of filmstar.com (because the defaults are hidden).
You can apply this same logic to other controllers. So, you could have an ActorsController, with a default Index action, and then this url shows up as filmstar.com/actors, and a FilmsController with a default Index action that would respond to filmstar.com/films
Think of the controller name as defining characteristic of things. And the action as how to deal with it. Thus, you would have filmstar.com/films/edit if you want to edit a film, and filmstar.com/films/create if you want to create a new film. But, since the default index is hidden, it won't show up in normal views.