root :to => 'StaticPages#index'
返回http://localhost:3000/
但是,我想始终在根目录中显示完整路径,因为我将路径用于布局目的。我需要我的根始终是:
http://localhost:3000/en/home
有谁知道如何实现它?
编辑- 原因:我正在突出显示当前页面。
link:
<%= link_to (t 'nav.home'), home_path, id: current_p(home_path) %>
helper:
def current_p(path)
"current" if current_page?(path)
end
在页面之间导航时它工作正常。但是,它永远不会突出显示主页,因为没有路径。任何的想法?