You can have Apache forward certain URLs to another http server running on the same machine like so in your httpd.conf file:<br><br><div style="margin-left: 40px;">LoadModule rewrite_module modules/mod_rewrite.so<br>RewriteRule ^/foo($|/.*) http://localhost:8000$1 [P,L]<br>
<br></div>When you have done this, all incoming URLs of the form<br><br><div style="margin-left: 40px;"><a href="http://yourhost.mit.edu/foo/*">http://yourhost.mit.edu/foo/*</a><br><br></div>will be redirected to<br><br>
<div style="margin-left: 40px;">
<a href="http://yourhost.mit.edu:8000/foo/*">http://yourhost.mit.edu:8000/foo/*</a><br><br></div>|>ouglas<br><br><div style="margin-left: 40px;"><br></div>