Site Fuse! programming, design, hosting, promotion and advertising tips for webmasters

Ruby on Rails 301 Redirect

Home  \  Forums  \  Programming & Development Forums  \  Ruby on Rails Forums  \  Ruby on Rails 301 Redirect
Share   

user photo

MrPhear   1 years, 6 months ago

301 redirect your ruby on rails pages using the code below;

def old_action
headers["Status"] = "301 Moved Permanently"
redirect_to "http://www.new-url.com/"
end
user photo
Guest