getting routing errors

I'd check to see if you're defining paths to things like stylesheets absolutely - ie linking to /style.css rather than style.css (no slash). The helpers do this automatically, but double check that your code is correct.

That causes problems because, when you're in a controller /some- controller, the relative URL will be looking for the CSS at /some- controller/style.css if the path is relative.

--Matt Jones