No commit activity in last 3 years
No release in over 3 years
Force all visitors onto a single domain.
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
 Dependencies
 Project Readme

Rack::ForceDomain

Directs all traffic to a single domain via 301 redirects.

Example Usage (Heroku)

config.ru

use Rack::ForceDomain, ENV["DOMAIN"]

environment.rb

config.middleware.use Rack::ForceDomain, ENV["DOMAIN"]

Heroku Config

heroku config:add DOMAIN="foo.com"

Now all requests to www.foo.com (or anything else pointed at the app) will 301 to foo.com.

If the $DOMAIN environment variable is missing, no redirection will occur.

You can also give provide a port along with your domain "foo.com:3000".