Redirect URLs
Redirect one URL to another URL?
- You can setup redirect URL rule by clicking on the at the top and select Redirect URL.
- Enter the Original URL regex that you would like to redirect from, and Redirect URL that you would like to redirect to.
- Note that you can use regex capture group replacement. For example:
- If you enter
.*://mydomain.com/.*
as the Original URL, and https://myotherdomain.com/
as the Redirect URL, then a request such as https://mydomain.com/foo
will be redirected to https://myotherdomain.com/
- However, if you enter
.*://mydomain.com/(.*)
as the Original URL, and https://myotherdomain.com/$1
as the Redirect URL, then a request such as https://mydomain.com/foo
will be redirected to https://myotherdomain.com/foo