Eu preciso de ajuda com minha configuração do Apache. Quero um redirecionamento do domínio example.com/test/ para subdomain.example.com/, mantendo o URL na barra de endereço.
Então, quando eu digitar meu www.example.com/test/, quero ver o conteúdo do link com o URL example.com / test / na barra de endereços.
Esta é a minha configuração.
ProxyRequests off
ProxyPass /test/ http://subdomain.example.com/
ProxyHTMLURLMap http://subdomain.example.com/ /test
<Location /test/>
ProxyPassReverse /
ProxyHTMLEnable On
ProxyHTMLURLMap / /test/
RequestHeader unset Accept-Encoding
</Location>
Tudo funciona bem, exceto pelas imagens e algumas fontes, etc. Existem no subdomain.example.com/Images/, subdomain.example.com/fonts/ e subdomain.example.com/Content/.
Eu tentei com o PorxyPassMatch
ProxyPassMatch "^/(.*\.png)$" "http://driveandlife.mercedes-benz.de/$1"
ProxyPassMatch "^/(.*\.jpeg)$" "http://driveandlife.mercedes-benz.de/$1"
ProxyPassMatch "^/(.*\.jpg)$" "http://driveandlife.mercedes-benz.de/$1"
ProxyPassMatch "^/(.*\.img)$" "http://driveandlife.mercedes-benz.de/$1"
e
ProxyPass /fonts/ http://subdomain.example.com/fonts/
ProxyPass /Images/ http://subdomain.example.com/Images/
ProxyPass /Content/ http://subdomain.example.com/Content/
Problema:
ProxyPassMatch Com ProxyPassMatch eu tenho seguinte problema a cada foto no site example.com recebe um redirecionamento para subdomain.example.com.
ProxyPass: Parece funcionar, mas o problema é que também tenho conteúdo em example.com/Content/. Então, quando eu visito este site, recebo um redirecionamento para subdomain.example.com/test: (.
Alguma sugestão?