Rails 보전 의 70 식:사용자 정의 Routes

468 단어 Rails
우 리 는 다음 url 에 따라 articles archive 를 보고 싶 습 니 다.
http://localhost/articles
http://localhost/articles/2007
http://localhost/articles/2007/9
http://localhost/articles/2007/9/28
우 리 는 이렇게 routes 를 정의 할 수 있다.

# in routes.rb
map.connect 'articles/:year/:month/:day', :controller => 'articles',
  :month => nil, :day => nil, :requirements => { :year => /\d{4}/ }

좋은 웹페이지 즐겨찾기