如何从网址中删除slug名称?我有父页面的URL:
host_url/home/index
但我需要这样做
host_url/index #without parent slug name
答案 0 :(得分:0)
您只需将routes
更改为:
match '/index', :to => 'home#index', via: [:get]
答案 1 :(得分:0)
如果在resources
中使用routes
。
resources :users, path: '/'
get '/index' => 'home#index'