Creating a rails route to an external URL

Chris picture Chris · Sep 2, 2010 · Viewed 26k times · Source

A lot of my users keep going to http://(rails app URL)/blog, but I don't actually have a blog. I finally setup a Posterous blog and now want to direct my users there. Is there a way to configure this using routes.rb? Is there a better way that doesn't involve editing the httpd.conf file?

Answer

nil picture nil · Oct 24, 2013

I know this is old, so in case someone else needs this for rails 4:

get "/blog" => redirect("http://example.com/blog")

Use get instead of Match in Rails 4, otherwise you'll get a Runtime error