I don't know if this would help, but I had this problem in setting up web2py using FastCGI:
I wanted to have web2py in a subdirectory off of my main page; http://www.rppowell.com/web2py/ Here is what I put in my .htaccess: RewriteEngine On RewriteRule ^dispatch\.fcgi/ - [L] RewriteRule ^(.*)$ dispatch.fcgi/$1 [L] (this is similar to the WSGIScriptAlias configuration) I had to then fix the URLs generated by web2py to put in the '/ web2py/' directory. I rename routes.example.py (in web2py directory) to routes.py and edit: routes_out=(('/(?P<a>.*)','/web2py/\g<a>'),) -rppowell -- You received this message because you are subscribed to the Google Groups "web2py-users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/web2py?hl=en.

