如何在 Rails 中获取 link_to 输出 SEO 友好的 url?
我的 link_to 标签是:
<%= link_to("My test title",{:controller=>"search", :action=>"for-sale", :id=> listing.id, :title => listing.title, :search_term => search_term}) %>
并产生这个丑陋的 URL:
http://mysite.com/search/for-sale/12345?title=premium+ad+%2B+photo+%5Btest%5D
我怎样才能生成 link_to:
http://mysite.com/search/for-sale/listing-title/search-term/12345
尝试了几种不同的方法,但在网上找不到太多,非常感谢任何帮助!
My link_to tag is:
<%= link_to("My test title",{:controller=>"search", :action=>"for-sale", :id=> listing.id, :title => listing.title, :search_term => search_term}) %>
and produces this ugly URL:
http://mysite.com/search/for-sale/12345?title=premium+ad+%2B+photo+%5Btest%5D
How can I get link_to to generate:
http://mysite.com/search/for-sale/listing-title/search-term/12345
Been trying this a few different ways and cannot find much online, really appreciate any help!
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
看一下 这个
将其添加到您的 config/routes.rb 中
,重新启动服务器并检查。
希望有帮助:)
Tahe a look at this
add this in your config/routes.rb
restart your server and check.
Hope that helps :)
您需要更改routes.rb 中的URL 结构以匹配您希望URL 的外观,并在控制器方法的args 中相应地解析参数。
You need to change the URL structure in routes.rb to match what you want the URL to look like, and parse the parameters accordingly in your controller method's args.