I have a tag cloud going and a route defined like so:
map.connect 'tags/:id', :controller => "tag", :action => "browse"
Works great, except when the phrase has a period in it (like "Web 2.0") Then I get a 404, presumably because Rails is interpreting that as a file name and an extension. I have wrapped CGI::escape around it but that doesn't seem to affect periods. What's the best way to handle this?