Hi, I have a (hopefully) simple problem that just doesn’t want to work:
I have a mapping in my routes.rb file:
map.connect ‘images/theme/:filename’,
:controller => ‘theme’, :action => ‘images’
If I then go to url: http://localhost:3000/images/theme/bullet_blue.jpg
I get following error:
Routing Error
no route found to match “/images/theme/bullet_blue.jpg” with
{:method=>:get}
However, if I go to url:
http://localhost:3000/images/theme/bullet_blue, the action is executed
correctly.
Why does the mapping not correspond to a real filename containing an
extension?
thanks!