controller.rb
@user = User.where(:id => params[:id]).take
html.erb
<a href="/home/layout02_03/<%=@interest.id%>">
something
</a>
click that a tag then url is "/home/layout02_03/3"
3 is user's id,
but I don't want to expose that "id"
how can I do that, I'm using ruby on rails