在我的 route.rb 文件中,我目前有:
map.connect ':controller/:action/:id'
map.connect ':controller/:action/:id.:format'
map.root :controller => "test"
如何将我的索引页面定向到这样的内容: http: //site.com/railstest/test/index.html
或者只是: http ://site.com/railstest/test.erb
最初它开始于: http ://site.com/railstest/
这将我带到了默认的 html 页面,该页面现已被删除。我应该更改路线还是在视图文件夹中创建一个test.rb,谢谢