Tag:

如何重定向到root – public / index.html?

我希望在我的应用程序/公共文件夹中重定向到index.html。 def get_current_user @current_user = current_user if @current_user.nil? redirect_to root_path end end 我该如何实现这一目标? 我没有修改我的routes.rb中的根(它仍然评论) # root :to => “welcome#index” 我收到一个错误,说root_path未定义。 如何修改routes.rb以便root_path指向public / index.html?