铁路路线匹配' location'和'位置'

时间:2014-05-24 19:46:04

标签: ruby-on-rails redirect routes

match '/l|L/ocation' => redirect(...

我希望做那样的事情。我可以为这个重定向添加一个单独的行,但它看起来很傻。

1 个答案:

答案 0 :(得分:0)

我认为您不能直接在路线中使用正则表达式。但是,您可以使用dynamic segment以及约束,这样就可以正常使用正则表达式。

这样的事情:

match '/:path', constraints: { path: /location/i }