Handle Url

Hello
i am on xojo 2023r1.1,on the web and i want on the Handle Url to change the path and appear different values when i change the url. how i can change the value on the path?

What you’re asking for is called a redirect:

Response.Header("Location") = "new url"
Response.StatusCode = 307
Return True

Edit: Change to 307 so request won’t be changed