# From here: # http://groups.google.com/group/phusion-passenger/browse_thread/thread/5e019e5d65beb54f def trim_www if request.subdomains.first == "www" if request.subdomains == ["www"] redirect_to "#{request.protocol}#{request.domain}#{request.port_string}#{request.path}" else subdomains = request.subdomains.shift.join(".") subdomains << "." unless subdomains.blank? redirect_to "#{request.protocol}#{subdomains}#{request.domain}#{request.port_string}#{request.path}" end end end