Ruby on Rails 301重定向

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Ruby on Rails 301重定向相关的知识,希望对你有一定的参考价值。

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.
  1. def old_action
  2. headers["Status"] = "301 Moved Permanently"
  3. redirect_to "http://www.domain.com/"
  4. end

以上是关于Ruby on Rails 301重定向的主要内容,如果未能解决你的问题,请参考以下文章