currently when we do any redirection, it works like below:
original path: Domain/
After Redirection: Domain/redirected-path
But If there is a path like "Domain/path1" and i want to only redirect "Domain" part to "domain/redirected-path2" and the path1 remain there, then
The original path should be: Domain/path1
and after redirection it should be : Domain/redirected-path2/path1.
But instead of this it landed on Domain/redirected-path2, "path1" is missing.
For example:
Currently, when a user accesses the URL:
original path: asianpaints.com/{endpoint-1}
and i want to put redirection rule on "asianpaints.com" part, which redirected to "asianpaints.com/{endpoint-2}". Then,
The expected landing page: asianpaints.com/{endpoint-2}/{endpoint-1}
But currently it landed on: asianpaints.com/{endpoint-2} , here /{endpoint-1} part is missing.
can it possible after routing both endpoint should be present instead of one.
Requirement:
The base URL asianpaints.com should be replaced by asianpaints.com/{endpoint-2}, while keeping the rest of the endpoint [/{endpoint-1}] unchanged.
Please confirm if this functionality can be implemented in F5 XC or suggest an alternative approach.