Dan
Dan

Reputation: 592

rails redirect to same page but add subdomain

If a user is at

blah.com/items/index

how do I redirect them to

de.blah.com/items/index

in a way that will work for any page? Right now I'm using

<%= link_to 'German', root_url(:host => 'de' + '.' + request.domain + request.port_string) %>

but that redirects them to de.blah.com. How do I keep the rest of the url? I'm using rails 3.

Upvotes: 5

Views: 3866

Answers (3)

Sagiv Ofek
Sagiv Ofek

Reputation: 25270

Keep it simple:

redirect_to subdomain: 'de'

Upvotes: 10

Rohit
Rohit

Reputation: 5721

Using the subdomain-fu plugin might prove to be useful, it is also available as a gem.

Upvotes: 1

super_p
super_p

Reputation: 740

<%= link_to 'German', params.merge({:host => with_subdomain(:de)}) %>

in app/helpers/url_helper.rb

module UrlHelper
  def with_subdomain(subdomain)
    subdomain = (subdomain || "")
    subdomain = "" if I18n.default_locale.to_s == subdomain
    subdomain += "." unless subdomain.empty?
    [subdomain, request.domain(tld_length), request.port_string].join
  end

  def url_for(options = nil)
    if options.kind_of?(Hash) && options.has_key?(:subdomain)
      options[:host] = with_subdomain(options.delete(:subdomain))
    end
    super
  end

  def tld_length
    tld_length = case Rails.env
      when 'production' then 2
      when 'development' then 0
      else 0
    end
  end 
end

Upvotes: 2

Related Questions