如果我访问http://walmart.example-site.com
它会将我重定向到http://walmart.example-site.com/communities/walmart
但我希望它重定向到http://example-site.com/communities/walmart
我该如何解决?
我的代码是。
路线.rb
constraints(:subdomain => /.+/) do
root :to => 'communities#subdomain_redirect'
end
社区控制器.rb
def subdomain_redirect
@community = Community.find_by_community_name(request.subdomain)
redirect_to @community
end