On Mon, 2021-03-15 at 08:55 -0700, Irene Vagionakis wrote:
> I have been asked to change the root of URLs of an EFES instance from
> '/' to 'xxx/', so that we get something like '
>
https://sitedomain.it/xxx/en/'
> without having to request a subdomain. How can this be done?
I take it that you do not want EFES to handle requests to /, only
requests to /xxx/. In this case, this should be handled by the web
server that proxies through to the server running EFES. For example, if
you are running Apache HTTPD as your front-end web server, use
mod_proxy and mod_proxy_html:
ProxyPass "/xxx/" "
http://my.efes.server:8080/"
ProxyPassReverse "/xxx/" "
http://my.efes.server:8080/"
ProxyHTMLEnable On
Jamie