How do I redirect a class.11talk.net to http://eng.pinestalking.com/home/eng/index/index.html without changing the URL?
As of current I have htaccess redirect set up in subdomain class.11talk.net as follows:
RewriteCond %{HTTP_HOST} ^class\.11talk\.net$ [OR]
RewriteCond %{HTTP_HOST} ^www\.class\.11talk\.net$
RewriteRule ^/?$ "http\:\/\/eng\.pinestalking\.com\/home\/eng\/index\/index\.html" [R=301,L]
301 redirection is easy but now I want the URL to remain as class.11talk.net but display content from http://eng.pinestalking.com/home/eng/index/index.html working as a proxy.
The two are obviously NOT from the same server.