All,
Is there a way to set things up so that requests for static files in
either WEBrick or Mongrel will just cause a regular HTTP request and not
cause the dynamic routing-based invocation to occur?
I had an issue where a request for a missing .js file was causing
another request to be registered, thus blowing away my flash data.
I tried to do this in my routing file, but I don’t think it is helping:
map.connect ‘javascripts/*stuff’
map.connect ‘stylesheets/*stuff’
Is there even a notion of separating static from dynamic content within
the WEBrick or Mongrel environments? If so, how is it achieved?
Thanks,
Wes