Simple issue but can't seem to find an answer doing some quick Googling. What's the Rails way of doing this 301 direct (http://x.com/abc > http://www.x.com/abc). A before_filter?
|
|
Ideally you'd do this in your web server (Apache, nginx etc.) configuation so that the request doesn't even touch Rails at all. Add the following
If you did want to do the redirect using Apache, you could use this:
|
|||||||||||||
|
|
While John's answer is perfectly fine, if you are using Rails >= 2.3 I would suggest to create a new Metal. Rails Metals are more efficient and they offers better performance.
Then open the file and paste the following code.
Of course, you can customize further the Metal. If you want to use Apache, here's a few configurations. |
|||||
|
|
I found this article when trying to achieve the opposite (www to root domain redirection). So I wrote the piece of code that redirects all pages from www to the root domain. |
|||
|
|