2

如何做到这一点:

RewriteCond %{HTTP_HOST} ^www\.(.*)$ [NC]
RewriteRule ^(.*)$ http://%1/$1 [R=301,L]

在机架重写语法中?

4

1 回答 1

2

您可以为此创建一个新的中间件

class SubdomainToWwwMiddleware
  def initialize(app)
    @app = app
  end

  def call(env)
    request = Rack::Request.new(env)
    if !request.host.starts_with?("www.")
      [301, { "Location" => request.url.gsub(/\/\/([^\.]*)/, "//www") }, self]
    else
      @app.call(env)
    end
  end
end

这是未经测试的,但应该让你朝着正确的方向前进。您可能希望添加一个条件来不仅检查,www.example.com而且检查example.com. 在这种情况下,上面的中间件目前可能会爆炸。

你可以把它放进去/lib/middleware/subdomain_to_www_middleware.rb,添加

config.autoload_paths += %W( #{ config.root }/lib/middleware )

到你的config/application.config, 和

config.middleware.use "SubdomainToWwwMiddleware"

给你的config/environments/production.rb

于 2012-11-15T14:44:11.040 回答