Okay, I've gotten VERY close here. I can get requests to http://my_web_server/my_TG_projects/foo to redirect to some other website using something like
RewriteRule ^(.*) http://some_other_website/$1 [R] (this is happening inside the <Directory> entry in httpd.conf for my TG application But when I use the [P] as suggested above, I get permission denied errors (from apache; no requests make it to the locally running cherrypy server). I do have mod_proxy installed, which seems to be required. I wish there were some way to easily serve this stuff straight out of mod_python instead of having to go through the cherrypy server. BTW, I have apache 2.

