I have a User model. If I do:
def my_action @user = User.new end
then
<% form_for(@user) do |f| %>
You can map custom routes in your routes.rb file like this...
map.users '/users', :controller => 'user', :action => 'index'
This gives you the users_path helper you're looking for.
users_path