如何在使用before_filter時更改設計的登錄路徑:athenticate用戶?更改設計的sign_in url
我在帖子控制器中有以下內容。
如:
class PostsController < ApplicationController
before_filter :authenticate_user!
def index
@posts = Post.all
end
end
目前,它會自動進入到 '/用戶/ sign_in'
我想使用 '/登錄'
我認爲如果你添加一個前綴斜槓(` :path =>'/'`)作爲它將使用根url的路徑。但我不確定,因爲我對Rails 3中的路由沒有信心。 – 2012-04-18 12:42:41