gpt4 book ai didi

ruby-on-rails - 如何在 Rails 中自动将所有链接设置为 nofollow

转载 作者:数据小太阳 更新时间:2023-10-29 06:51:46 25 4
gpt4 key购买 nike

我知道我可以将 :rel => "nofollow" 传递给 link_to 但有没有办法默认设置它,这样我就不必进行更改在每个 link_to 标签中?

最佳答案

在您的应用程序助手中,您可以覆盖 link_to 方法并替换为您自己的方法。

def link_to(name, options = {}, html_options = {})
html_options.merge!(:rel => :nofollow)
super(name, options, html_options)
end

关于ruby-on-rails - 如何在 Rails 中自动将所有链接设置为 nofollow,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3533067/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com