Hey thanks! It worked. I used to have $anything earlier. Dunno why I changed it to any.
Hmm. I guess I can do this kind of deployment if there's no one to tell me otherwise. This is good cause I don't want people going fiddling around with httpd.conf and restarting the server all the time, when they make mistakes with routing or want to setup a new app. Kimmo On Feb 24, 5:27 pm, Jonathan Lundell <[email protected]> wrote: > On Feb 24, 2011, at 12:30 AM, Kimmo wrote: > > > > > So far I've only found one minor problem with this. > > > In my example above, the links to other apps in the admin app wont > > work. > > For example clicking the app2 should redirect towww.myhost.com/subdir/app2, > > but it redirects towww.myhost.com/app2and results to Not Found. > > Other than that, all editing works fine. > > > I tried to edit routes.py for admin like this, but it didn't have any > > effect on the link. > > routes_out = (('/app2/$any', '/subdir/app2/$any'),) > > Use $anything instead of $any. > > (and remember to restart web2py after the change)

