Redirect URLs
- You can setup redirect URL rule by clicking on theat 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, andhttps://myotherdomain.com/
as the Redirect URL, then a request such ashttps://mydomain.com/foo
will be redirected tohttps://myotherdomain.com/
- However, if you enter
.*://mydomain.com/(.*)
as the Original URL, andhttps://myotherdomain.com/$1
as the Redirect URL, then a request such ashttps://mydomain.com/foo
will be redirected tohttps://myotherdomain.com/foo

Last modified 1yr ago