Freelance Jobs
Marketplace
Forums
Login
Join
Ruby on Rails 301 Redirect
Home
\
Forums
\
Programming & Development Forums
\
Ruby on Rails Forums
\ Ruby on Rails 301 Redirect
Share
Tweet
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
Guest