I want to add an optional string to an URL. I've tried this:
map ":category/p:id(/:title)" => ...
The title parameter should be optional, so that the user can insert a optional title or leave it. Sadly this does not work. Any ideas?
I want to add an optional string to an URL. I've tried this:
map ":category/p:id(/:title)" => ...
The title parameter should be optional, so that the user can insert a optional title or leave it. Sadly this does not work. Any ideas?
If I remember correctly, it depends on what version of Ruby on Rails you are using.
match ':category/p:id(/:title)', :to => 'category#edit'
map.connect ':category/p:id/:title, :controller => 'category', :action => 'edit', :title => 'default title'