过去我们需要使用其他模块,例如https://github.com/kwi/i18n_routing,它现在仍然是首选案例吗?
我只想要一些基本的URI映射,例如
http://www.example.com/users/1 (default)
http://www.example.com/es/users/1
http://www.example.com/jp/users/1
答案 0 :(得分:1)
不是。
您可以像这样设置区域设置前缀。
scope "(:locale)", :locale => /en|de|hr/ do
get "foo/bar"
end
匹配:
/foo/bar
/en/foo/bar
/de/foo/bar
/hr/foo/bar