Search results

  1. C

    RewriteRule multi subdomains doesn't work

    Awesome it worked! Thank you very much Here's the script if anybody else needs it: RewriteCond %{HTTP_HOST} ^subdomain1.mydomain.com RewriteRule ^(.*)$ http://subdomain1_ext_proxy/$1 [P,E=Proxy-Host:subdomain1.mydomain.com] RewriteCond %{HTTP_HOST} ^subdomain2.mydomain.com RewriteRule ^(.*)$...
  2. C

    RewriteRule multi subdomains doesn't work

    Hello, I've setup up 3 external apps for 3 subdomains and i've used the following rewrite rule: (on example.com) RewriteCond %{HTTPS} on RewriteRule ^(.*)$ http://subdomain1_ext_proxy/$1 [P,E=Proxy-Host:subdomain1.mydomain.com] RewriteRule ^(.*)$ http://subdomain2_ext_proxy/$1...
Top