You need the following:
http://subdomain.test.co.uk/newsite --> redirect to apache port 80 http://subdomain.test.co.uk --> redirect to iis on port 8080
IIS changed to work on 8080, and both sites work fine using localhost.
Also included the following in httpd.conf
LoadModule proxy_http_module modules/mod_proxy_http.so LoadModule rewrite_module modules/mod_proxy.so
Then the following is added to httpd-vhosts.conf
<VirtualHost *:80> ServerName subdomain.test.co.uk ServerAlias * ProxyPreserveHost On ProxyPass / http://127.0.0.1:8080/ </VirtualHost>
but the content does not load if the goto domain - please inform TQ
source share