I have an anchor tag in my rails app..
<a href='app/users/<%= current_user.id %>/personal_settings'> <i class='icon-gear'></i> Personal Settings </a>
thing is this gets rendered in many of my html pages. So whenever I click this <a>
tag the url that goes is like parent_url + app/users/:id/personal_settings
Is there any way I can prevent this. Whenever I click this a tag the url should be just app/users/:id/personal_settings
. no parent tags should come.