我有views/application/index.html.erb
在我的路线文件中我有:
root :to => "application#index"
我的ApplicationController如下:
class ApplicationController < ActionController::Base
protect_from_forgery
def index
# ask whether teh player wants to go first or second
@player_start_character = ""
end
end
但是当我导航到localhost:3000时,它仍然说“你刚刚启动了一个rails app项目”页面
我也删除了public / index.html
答案 0 :(得分:6)
您必须删除/public/index.html文件