If you have only one store (without an identifier), you can only create one route (with a name storeso that you can use store_path):
map.resource :store, :only => [:show]
You can also create your own route:
map.store "/store", :controller => "store", :action => "show"
source
share