如何在 Rails 中编写 SEO 友好的路线?
我正在将我的网站从 Google App Engine 更改为 Rails,并且我想保留我在 Google 搜索中的位置。目前,我的网站使用 URL /page?pid=microsoft-interview-questions
来访问 Microsoft 面试问题小节。我将如何创建一个可以将其发送到 '/tags/:id'
的路由,其中 :id 在这种情况下将是 microsoft?
I am changing my site over from Google App Engine to rails and I would like to keep my place in google search. Currently my site uses a URL /page?pid=microsoft-interview-questions
to access the Microsoft subsection of interview questions. How would I create a route that can send this to '/tags/:id'
where :id would be microsoft in this case?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
除了乔什的回答之外,我还将其放在这里进行格式化:
In addition to josh's answer I'll put this here for formatting:
像这样的东西应该可以工作(在routes.rb中):
请参阅路线参考
something like this should work (in routes.rb):
see routes reference