I made a proxy pass adding to my localhost instance the path /vocab/arch. Here the configuration I used:
<IfModule mod_proxy.c>
ProxyPass /vocab/arch http://localhost:3000/
ProxyPassReverse /vocab/arch http://localhost:3000/
Alias /vocab/arch /assets/
</IfModule>
<Location />
Require all granted
</Location>
RewriteEngine On
RewriteRule ^/vocab/arch - [L]
RewriteRule ^/(.*) http://localhost:3000/$1 [P,L]
ProxyPassReverse /vocab/arch http://localhost:3000/
Pointing to http://localhost:3000/ I'm having the landing page of my web-app as expected under http://localhost:3000/vocab/arch/en.html.
However clicking on some link like "Collections" I'm having https://localhost:3000/en/collections.html instead of https://localhost:3000/vocab/arch/en/collections.html
How can I solve this issue?
Thanks in advance