我目前正在以下列方式为我的页面定义路由:
get "home/index"
get "photo/index"
get "project/index"
get "home/about"
root :to => 'home#index'
但是,我似乎只能使用以下方法创建指向照片/项目索引页面的链接:
<a href="/photo/index">link</a>
<a href="/project/index">link</a>
在 URL 中,“索引”部分也出现了。我不能简单地/photo
在a
链接中使用,因为 rails 会引发路由错误:
No route matches [GET] "/photo"
我将如何为此创建路线匹配?