我有:
match 'welcome/index' => 'welcome#index'
只有一个欢迎操作/页面是索引。所以我可以
match 'welcome/' => 'welcome#index'
(假设任何地方都不存在其他欢迎/目录)或其中之一:
match 'welcome' => 'welcome#index'
match '/welcome' => 'welcome#index'
match '/welcome/' => 'welcome#index'
匹配是否像某种正则表达式一样工作,我可以插入斜线以确保是否查找目录中的内容?