I have 2 website in 2 different servers,
http://www.example.com
is the mainsite (dotnet)http://help.example.com
is a microsite (wordpress)RewriteEngine On RewriteRule ^ index.php [L] RewriteRule ^/help(.*)$ http://help.faceoff.com/ [L]
With the above configuration, when user go to http://www.example.com/help
it will redirect to the http://help.example.com/
.
Is it possible to have the http://www.example.com/help
in the URL bar, but serving content from http://help.example.com/
?