I have a domain int.business.com. When I hit this I want the browser to show the contents in the domain www.data.business.com but the users should still see int.business.com in the address bar. Here is my vhost configuration
RewriteEngine on
SSLProxyEngine on
RewriteRule ^/(.*)$ int.business.com [P]
ProxyPassReverse / data.newbusiness.com
With this configuration, I am getting a 502 proxy error
Proxy Error
The proxy server received an invalid response from an upstream server.
The proxy server could not handle the request GET /.
Reason: Error reading from remote server
Any suggestions on how to solve this.