我不需要创建与link_to的跟随链接。
我在找这样的东西:
<%= link_to "example", example_path, :target => "_blank" %>
但当然不是为了追随。
发布于 2010-07-31 09:16:23
您可以使用link_to指定其他属性:
<%= link_to "example", example_path, rel: 'nofollow' %>产生:
<a rel="nofollow" href="example_path">example</a>https://stackoverflow.com/questions/3376271
复制相似问题