Sure. Use name routes.. so rather than use something like:
map.connect 'example/:action', :controller => 'example'
use:
map.example 'example/:action', :controller => 'example'
this way, you can use example_url(:action => 'whatever') to create
the url for that route.
Hope this helps, Damien