I'm working on a straight forward rails app. One thing that has me puzzled is the generated hyperlinks in rails,
<%= link_to 'Home', :controller => 'my_controller', :action => 'index' %>
generates a hyperlink like:
<a href="/my_app/public/my_app">Home</a>
when I'd expect:
<a href="/my_app">Home</a>
I'm a novice, is there something in the .htaccess I need to change or in the routes.rb file, so I get a hyperlink in the format of the latter.
Thanks T