Is it possible to configure Apache web server to map a directory to a path on another web server? For example, can I make requests for http://server1/resource/ return http://server2/resource/. If this is possible, how do I go about setting this up?
|
|
mod_proxy is the way to go:
Use:
|
||||||
|
|
|
mod_rewrite is pretty powerful for this. You'd setup a rewrite rule for /resource/ and use a 302 redirect to send people over to server two. http://httpd.apache.org/docs/1.3/mod/mod_rewrite.html Untested example:
|
||
|
|
|
|
I think this question is for serverfault.com. Not going in detail here, but you could set this up using RewriteCond, RewriteRule directives in apache configuration. I have used both |
||||
|
