2010-12-01 5 views

답변

0

가 사람들을 지시하는 루트 경로를 설정합니다 (이러한 레일 3 개 경로입니다) : 설정에서

/routes.rb

root "content#features" 
응용 프로그램에서

/컨트롤러/contents_controller.rb

class ContentsController < ApplicationController 
    def features 
    end 
end 

그러나 리디렉션은 수행되지 않습니다. 그렇게하려면, 당신은 다음과 같이해야합니다 : 설정에서 을/routes.rb

match "features" => "contents#features", :as => "features" 
root "content#index" 
응용 프로그램/컨트롤러/contents_controller.rb에서

class ContentsController < ApplicationController 
    def index 
    redirect_to features_url 
    end 
    def features 

    end 
end