如何从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'