I have a server. Lets call it http://A.com I also have an 'Enjin' forum board. Lets call it http://A.B.com.

The server is useful for many scripts and functional components for the admins. The forum boards are for the community, but I can only add HTML modules to it. No custom scripting.

Currently, I have it set up to redirect the index of http://A.com to http://A.B.com using HTML redirection, and so those who navigate to the root of A.com will be sent to the forums.

I would like to make it so if you navigate to http://A.com, it'll show the contents of http://A.B.com. We once used an iFrame, but that had a detrimental affect on the forums, so currently we just redirect them. I've seen someone using the same system have a URL such as http://C.com/forums/viewforum/212877 showing the contents of http://C.B.com/forums/viewforum/212877

I assume mod_rewrite could be capable of this, but how exactly?

link|improve this question

75% accept rate
Are you on shared host? and is mod_proxy enabled? – ThinkingMonkey Feb 17 at 11:37
@ThinkingMonkey, you just beat me to the same Q :-) – TerryE Feb 17 at 11:39
@TerryE he he :). – ThinkingMonkey Feb 17 at 11:40
feedback

1 Answer

up vote 0 down vote accepted

It sounds like you want to set up a reverse proxy wherein a client requests a page from http://A.com/ retrieves the page from http://A.B.com/ using HTTP, and then returns that content as it own response to the client.

See http://httpd.apache.org/docs/2.2/mod/mod_proxy.html#proxyvia

"A reverse proxy is activated using the ProxyPass directive or the [P] flag to the RewriteRule directive. It is not necessary to turn ProxyRequests on in order to configure a reverse proxy."

You would need to check what happens regarding links on pages. If http://A.B.com/ uses absolute links then they will be to pages inside http://A.B.com/ . But relative links will still be under http://A.com/ .

link|improve this answer
Brilliant, thanks. Just gotta figure out how to use this now. – CJxD Feb 18 at 15:08
Try working through the docs linked above. If you're still stuck, come back and comment again. – hochgurgler Feb 18 at 18:39
feedback

Your Answer

 
or
required, but never shown

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