Routing to static html page in /public
You can do this: Add this, into your routes.rb file. match ‘/foo’, :to => redirect(‘/foo.html’) Update In Rails 4, it should use “get”, not “match”: get ‘/foo’, :to => redirect(‘/foo.html’) thanks Grant Birchmeier