> ('/(.*)', '/myapp/$1'),

This is not a valid Python regular expression. You are mixing here the
RE syntax with the simplified web2py tags.
Correct RE would be: ("/(.*)", r"/myapp/\1")
Correct web2py tags: ("/$tag", "/myapp/$tag")

Reply via email to