Rails.application.routes.draw do contexts :language do get '/', to: 'application#index', as: :root get '/lang', to: 'application#index', as: :lang_page context :city do get '/city/', to: 'application#index', as: :city_page end end end