Hi Team,We need to append multiple subdirectories and the content should be serve from some other container where we proxied the request.<VirtualHost *:80><Proxy *>Order deny,allowAllow from allRewriteEngine OnRewriteRule ^(.*)$ https://domain.example.com [R=301,L]</Proxy></VirtualHost><VirtualHost *:443>ServerName domain.example.com<Proxy *>Order deny,allowAllow from all</Proxy>SSLEngine OnSSLProxyEngine OnSSLCertificateFile /etc/apache2/ssl/speedy.marriott.com.crt SSLCertificateKeyFile /etc/apache2/ssl/speedy.marriott.com.key <Location "/groups/">#RewriteRule ^/groups/(.*) /$1 [P,R]#ProxyPass http://10.224.222.15:29956/#</Location>RewriteCond %{REQUEST_URI} ^/groups/index.htmlRewriteRule ^/groups/?$ http://10.224.222.15:29956/ [P,L]ProxyRequests OffProxyPreserveHost OnProxyPass / http://10.224.222.15:29956/ProxyPassReverse / http://10.224.222.15:29956/</Location></VirtualHost>RewriteCond https://speedy.marriott.com:29290 !^/aries/RewriteRule ^(.*)$ /$1 [L]location /webinterface {rewrite ^/webinterface(/.*)$ $1 break;proxy_pass https://XXXXXXXX:XXXXX;The request doesn't seems to passthrough.to the destination container on 10.224.222.15:29956, 10.224.222.15:29957 and 10.224.222.15:29958The domain name should be same for all of them.ThanksPankaj