0

我或多或少地实现了这个 railscast 来获取子域:

http://railscasts.com/episodes/221-subdomains-in-rails-3

它工作得很好,但我希望不匹配的子域重定向到根路径。

这是 routes.rb 部分:

match '/' => 'menus#show', constraints: { subdomain: /^(?!www$)(.+)$/i }

这是在菜单#show中:

# GET /menus/1
# GET /menus/1.json
def show
  if !params[:id].nil?
    @menu = Menu.find(params[:id])
  else
    if Shop.find_by_subdomain(request.subdomain).nil?
        respond_to do |format|
          format.html { redirect_to(root_path, :notice => I18n.t("misc.not_found")) }
          return
        end
      else
       @menu = Shop.find_by_subdomain(request.subdomain).menus.last
    end
  end

  if !@menu.nil?
    respond_to do |format|
      format.html # show.html.erb
      format.json { render json: @menu }
    end
  end
end

所以我仍然想保持不使用子域的可能性(因此检查params [:id]。然后我检查子域是否存在,如果不存在我想重定向。

目前我在尝试不存在的域时得到这个,所以我相信他仍在尝试显示菜单:

undefined method `shop' for nil:NilClass
Extracted source (around line #1):

1: <h2>Menu <%= @menu.shop.name %></h2>
2: <br>
3: <%= render :partial => 'menu_show' %>
4

1 回答 1

0

在您的 ApplicaitonController 中,执行以下操作:

before_filter :redirect_on_bad_subdomain

def redirect_on_bad_subdomain
  unless is_valid_subdomain(request.domain)
    redirect_url = root_url(subdomain: 'www')
    redirect_url += request.fullpath[1..request.fullpath.length]
    redirect_to redirect_url and return false
  end
end

def is_valid_subdomain(subdomain) 
  # validate however you want
end

我还没有测试出确切的代码,但这应该非常接近。

于 2013-06-05T00:02:53.027 回答