从url移动向量中删除段塞名称



如何从URL中删除段塞名称?我有带父页面的URL:

host_url/home/index

但我需要这个作为

host_url/index  #without parent slug name

您可以简单地将routes更改为:

match '/index', :to => 'home#index', via: [:get]

如果在routes中使用resources

resources :users, path: '/'
get '/index' => 'home#index'

相关内容

  • 没有找到相关文章

最新更新