Hi @RamTejaReddy , Can you try changing the lines ProxyPass
"http://xxx/test-one" ProxyPassReverse "http://xxx/test-one"to ProxyPass
"/" "http://xxx/" ProxyPassReverse "/" "http://xxx/"Since your location
is already set to "/test-one", this proxy rule should apply only to the
URLs with /test-one in the path. Also, For regex pattern like
/test-one/(.*), you should use LocationMatch directive:Ref:
https://httpd.apache.org/docs/2.4/mod/core.html#locationmatch Hope this
helps! Thanks,Fani