How do I write a route to map to an explicit .htm file?
E.g. I have a something.htm under /templates in Pylons and I want to map http://myserver.com/something.htm to something.htm under /templates. Can I do this with Routes for Pylons or does everything get mapped to some combination of /controller/action/id ?
I would assume one way is to do: map.connect('something.htm', '/something.htm', controller='something', action='something') and create a dummy controller for it (which just returns render(/something.htm))?
This seems like cumbersome for this simple job.
Any ideas?