Forum Moderators: phranque
I have a requirement where i need to make this URL
www.example.com/test1/test2/* look like
www.example.com/a/b/* in the address bar
For this i am writing this code in the config file,
ProxyPass /a/b/* www.example.com/test1/test2/*
ProxyPassReverse /a/b/* www.example.com/test1/test2/*
RewriteEngine on
RewriteRule ^/test1/test2/(.*) www.example.com/a1/a2/$1 [R,L]