How do you ignore a URI prefix?

I'm using the directive RailsBaseURI to point to an application called myapp from my site davidbeckwith.com. When I use the browser to point to davidbeckwith.com/myapp, I get a routing error because the URI begins with /myapp.

How do I configure routes.rb or the Rails application to ignore the "/myapp" part of the URI so that I don't have to rewrite all of my routes?

Thank you,

David :slight_smile:

This is a problem with your Passenger configuration, not Rails.