> Another thing that might help is to put =BEAUTIFY(request) into a template > somewhere and compare the two when given URLs of the form you're having > trouble with.
This is interesting. On the server, path_info and web2py_original_uri got it wrong. If say, the url is app/controller/function/a/b//c. Then the correct path_info on the server is this: app/controller/ function/a/b/c The slash between b and c was wrongly removed. Whereas on my pc, it is correct: app/controller/function/a/b//c

