0

我有

资源:文章

并在文章.rb

def to_param
    "#{id}-#{name.downcase.gsub(/\s+/, "_")}"
end

所以网址会像

www.example.com/articles/1-Name-of-the-first-article

我现在正在尝试找到一个简单的解决方案,始终将 URL 中的“文章”替换为“百科全书”。所以路径应该是

www.example.com/encyclopedia/1-Name-of-the-first-article

有简单的解决方案吗?

4

1 回答 1

1

真的很简单。

路线.rb

resources :articles, :path => :encyclopedia
于 2013-01-18T00:01:11.540 回答