我是 Rails 新手,所以听起来可能很幼稚。我遇到了这个错误
No route matches [GET] "/"
这是我的路线.rb
MyApp::Application.routes.draw do
match 'welcome/contact' => 'welcome#index'
end
这是我的控制器
class WelcomeController < ApplicationController
def index
redirect_to :action => :contact
end
def contact
end
end
我的 app/view/welcome/ 中有一个contact.html.erb。我做错了什么?