Need the following please:
http://subdomain.test.co.uk/newsite --> redirect to apache port 80
http://subdomain.test.co.uk --> redirect to iis on port 8080
Have changed IIS to run on 8080 and both sites run fine using localhost.
Have also enabled the following in httpd.conf
LoadModule proxy_http_module modules/mod_proxy_http.so
LoadModule rewrite_module modules/mod_proxy.so
Then added following to httpd-vhosts.conf
<VirtualHost *:80>
ServerName subdomain.test.co.uk
ServerAlias *
ProxyPreserveHost On
ProxyPass / http://127.0.0.1:8080/
</VirtualHost>
but no content is loaded when goto domain - please advise TQ