这是我的类别控制器代码
class CategoriesController < ApplicationController
before_filter :authenticate_user! ,:except => :index
def index
#some code
end
def show
#some code
end
end
显然,您可以看到我的类别#index页面是公开可见的,其中列出了所有类别。当任何人在没有登录的情况下点击类别名称时,他/她将重定向到'localhost:3000 / users / sign_in'。
但我希望每当设计before_filter:authenticate_user时,该用户将重定向到某个网址,如“www.facebook.com”!工作
我怎么能做到这一点?