如何在 Rails 中编写 SEO 友好的路线?

发布于 2024-09-13 02:17:16 字数 229 浏览 3 评论 0原文

我正在将我的网站从 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

凤舞天涯 2024-09-20 02:17:16

除了乔什的回答之外,我还将其放在这里进行格式化:

# your controller

def show
  @subject = Subject.find my_stripped_id


private
def my_stripped_id
  params[:id].sub(/-interview-questions/, '')
end

In addition to josh's answer I'll put this here for formatting:

# your controller

def show
  @subject = Subject.find my_stripped_id


private
def my_stripped_id
  params[:id].sub(/-interview-questions/, '')
end
随波逐流 2024-09-20 02:17:16

像这样的东西应该可以工作(在routes.rb中):

map.connect '/page?pid=:number',
:控制器=> '标签', :action =>
“显示”

请参阅路线参考

something like this should work (in routes.rb):

map.connect '/page?pid=:number',
:controller => 'tags', :action =>
'show'

see routes reference

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文