for an api that is accessing my site I need to have a crossdomain.xml file at the root level so I created a redirect for it in routes.py but it doesn't seem to work. Do I have the syntax correct? This is my routes.py file... (if I go to http://myUrl/dispatch/static/crossdomain.xml everything is fine ).
default_application="gateway"
routes_in = (('/crossdomain.xml', '/dispatch/static/crossdomain.xml'),)
routes_out = ()
--

