vote up 1 vote down star

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?

flag

3 Answers

vote up 1 vote down check

mod_proxy is the way to go:

http://httpd.apache.org/docs/2.0/mod/mod_proxy.html

Use:

<Location /resource/>
    ProxyPass http://server2/resource/
    SetEnv force-proxy-request-1.0 1
    SetEnv proxy-nokeepalive 1
</Location>
link|flag
2  
The only disadvantage here is in a high request per second environment, you are proxying, and thus leaving the backend on apache open while you go to the other server and process. This requires more open connections and may be slower than just sending the browser to the right server with a http header. – Crad Jun 12 at 3:35
While I did answer the question as stated, on an architectural level in a high volume environment, I agree that you don't want to do this with Apache. – stevedbrown Jun 12 at 15:59
vote up 2 vote down

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

http://www.modrewrite.com/

Untested example:

<location "/">
 RewriteEngine On
 RewriteRule ^/resource/(.*)$ http://server2/resource/$1 [R]
</location>
link|flag
vote up 0 vote down

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 mod_proxy and mod_rewrite rules to achieve similar effect. PS: check out serverfault.com and give the sysadmin folks a try.

link|flag
1  
Agreed that this would have been better on ServerFault.com – Crad Jun 12 at 3:33

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.