When creating links, you can specify the action and controller to which they point:
<%= Html.ActionLink("Create new shift", "create", "shift") %>
The same goes for HTML forms that allow POST:
<% using (Html.BeginForm("create", "shift")) <% { %>
...
<% } %>
. , , .