%%
Last Updated:
- [[2021-04-02]]
%%
In [[Gatling]], this is done by setting the base URL:
`val httpProtocol = http.baseUrl("https://flooded.io")`
Then, succeeding requests will only need to have the path:
```javascript
exec(http("01_Home") // This sets the transaction name
.get("/") // method and relative path to retrieve
```
To change the environment, all you’ll need to change is the base URL.