Skip to content

Instantly share code, notes, and snippets.

@tylerhunt
Created October 9, 2009 18:03
Show Gist options
  • Star 7 You must be signed in to star a gist
  • Fork 3 You must be signed in to fork a gist
  • Save tylerhunt/206213 to your computer and use it in GitHub Desktop.
Save tylerhunt/206213 to your computer and use it in GitHub Desktop.
Rack middleware that redirects requests to a canonical host.
class CanonicalHost
def initialize(app, host=nil, &block)
@app = app
@host = (block_given? && block.call) || host
end
def call(env)
if url = url(env)
[301, { 'Location' => url }, ['Redirecting...']]
else
@app.call(env)
end
end
def url(env)
if @host && env['SERVER_NAME'] != @host
url = Rack::Request.new(env).url
url.sub(%r{\A(https?://)(.*?)(:\d+)?(/|$)}, "\\1#{@host}\\3/")
end
end
private :url
end
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment