Forum Moderators: phranque
RedirectMatch permanent ^/(.*)$ [subdomain.ourdomain.com...]
ProxyPass /appname [127.0.0.1:8180...]
ProxyPassReverse /appname [127.0.0.1:8180...]
I'd like to force any visitors going to the site that isn't appname to be sent to appname. This achieves this, but my question is this: Is this inefficient? Is it doing 301's for every HTTP request even when the user is already using appname and inside of Confluence? I hope this clear! Thanks!
Also, consider whether youa actually want to expose "appname" in the URL using a redirect, or whether an internal rewrite to the proxied path would be more appropriate.
With this scheme as currently described, "appname" will also have to handle requests for robots.txt, SiteMap.xml, images, and all other included objects, etc.
Jim