guillaume wrote: > Hi, > > I would like to get the root path of my website using link_to in a > view... (for example : http://www.mywebsite/controller/action/id) > how is that possible ? > > (i do need it, because i use the generated code in the view outside of > the rails app') > > Thanks..
in routes.rb: map.root '/' in your view: link_to 'link to root', root_url Is that what you need? -Sjoerd -- Posted via http://www.ruby-forum.com/. --~--~---------~--~----~------------~-------~--~----~ You received this message because you are subscribed to the Google Groups "Ruby on Rails: Talk" group. To post to this group, send email to [email protected] To unsubscribe from this group, send email to [EMAIL PROTECTED] For more options, visit this group at http://groups.google.com/group/rubyonrails-talk?hl=en -~----------~----~----~----~------~----~------~--~---

