Ruby on Rails主页

时间:2018-10-03 07:03:17

标签: ruby-on-rails digital-ocean

我刚刚将Ruby on Rails一键式应用程序部署到Ubuntu服务器。我很好奇我要去哪里编辑应用程序的主页。域是“ gitship.com”。当我查看整个服务器时,找不到带有地球背景的“ Yay you's rails”屏幕上的index.html或类似内容来编辑主页和背景图像。

2 个答案:

答案 0 :(得分:0)

您首先需要使用命令rails g controller home index创建一个控制器。这将在HomeController.rb文件夹中创建一个带有索引操作的app/controllers

接下来的事情是,您需要为其添加路由。

在您喜欢的文本编辑器中打开app/config/routes.rb文件,并将内容替换为:

Rails.application.routes.draw do
  root to: 'home#index'
end

现在您可以通过编辑文件app/views/home/index.html.erb

来更新主页的内容。

答案 1 :(得分:0)

您需要在routes.rb文件中设置首页路由,例如

root 'welcome#index'

其中welcome是控制器,index是动作。

希望有帮助!