HI all,
I want to implement pretty URL, say suppose my url like this
domain/services/1/title-of-this-id
i have changed my routes to this,
map.services ‘services/:id/:title’, :controller => ‘services’, :action
=> ‘show’
then it is working fine, but
i want to make my url look like this,
/domain/services/date/title-of-id
eg: domain/services/2008/01/01/title-of-this-service
Note: date i want in format of YYYY/MM/DD
Thanks in advance
Naresh Rana