実際には大した種類のルーティングは無いのでデフォルトのルーティングは外しといた方がトラブルが少ない。(無名のルートは持たないように気を付ける感じ?)

ActionController::Routing::Routes.draw do |map|
#  map.connect ':controller/:action/:id'
#  map.connect ':controller/:action/:id.:format'
end

/index.htmlも設定しとかないとYahooにインデクスされない。

ActionController::Routing::Routes.draw do |map|
  map.root :controller => 'top'
  map.root_for_yahoo 'index.html', :controller => 'top'
end

Comments


Option