1.get "/questions/:id" => "questions#show", as: :question
2.create control method def show @question = Question.find params[:id] end
3.create view page
redirect_to question_path({id: @question.id})
redirect_to question_path({id: @question})
redirect_to question_path({@question})
reidrect_to @question