Heroku: Přesměrování www v Ruby on Rails
Published by Tomáš Pavelka on January 25th, 2012
Široce oblíbený Ruby on Rails hosting - Heroku.com - nemá standardní řešení přesměrování z http://myapp.com na http://www.myapp.com. Je nutné to tedy řešit až na úrovni Rails aplikace.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.autoload_paths += %W( #{ config.root }/lib/middleware ) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
config.middleware.use "WwwMiddleware" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# lib/middlewares/middleware.rb | |
class WwwMiddleware | |
def initialize(app) | |
@app = app | |
end | |
def call(env) | |
request = Rack::Request.new(env) | |
if request.host.starts_with?("www.") | |
[301, {"Location" => request.url.sub("//www.", "//")}, self] | |
else | |
@app.call(env) | |
end | |
end | |
def each(&block) | |
end | |
end |
Já osobně jsem si kód trochu upravil, tak aby přesměrovával z "z bez www" na "s www" a ne naopak jak to původně bylo. Myslím si totiž, že běžní uživatelé jsou zvyklí na URL s www.