Ruby on Rails 301 Redirect


/ Published in: Rails
Save to your folder(s)

This redirects visitors to a new URL using a 301 redirect. Using a 301 redirect is the safest way to let search engines like Google, Yahoo!, Live and Ask know your address has changed.


Copy this code and paste it in your HTML
  1. def old_action
  2. headers["Status"] = "301 Moved Permanently"
  3. redirect_to "http://www.domain.com/"
  4. end

Report this snippet


Comments


You need to login to view comments.