0

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.

Olaf Dietsche
  • 72,253
  • 8
  • 102
  • 198
Windee
  • 1

1 Answers1

0

Use a full page iframe, .tk did this for years and it worked fine.

Other than that, point the DNS record to the other server and configure it to host that directory under this domain name.

MarZab
  • 2,543
  • 21
  • 28
  • class.11talk.net is responsive and I use an iframe like you recommended, it would go against that. – Windee Sep 24 '16 at 14:47