Comment puis-je router /foo
pour afficher /public/foo.html
dans Rails?
Réponse
Trop de publicités?Tu peux le faire:
Ajoutez ceci dans votre fichier routes.rb.
match '/foo', :to => redirect('/foo.html')
Mettre à jour
Dans Rails 4, il devrait utiliser "get", pas "match":
get '/foo', :to => redirect('/foo.html')
merci Grant Birchmeier