在我的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,谢谢
答案 0 :(得分:1)
不可能绕过每个控制器制作直接进入视图的路径。
所以你现在有两个选择:
将其设为静态html页面
创建一个将为您的视图提供服务的控制器