Rails 301 Redirection
http-status-code-301, redirect, ruby-on-rails, seo
Solution
I used this post and decided to redirect using non-www urls.
Problem
I would like to redirect multiple entries to my landing page to one url. The following urls, `http://mysite.com` and `http://www.mysite.com`, would redirect to `http://www.mysite.com/` using 301 redirection. How can/should this be done in Rails?