> For the complete documentation index, see [llms.txt](https://jack80342.gitbook.io/spring-boot/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://jack80342.gitbook.io/spring-boot/v.-spring-boot-actuator/50.-endpoints/50.6-actuator-web-endpoint-paths.md).

# 50.6 执行器网络端点路径

默认的，端点使用其ID，通过HTTP暴露在`/actuator`下。例如，`beans`端点暴露在`/actuator/beans`下面。如果你想要将端点映射到不同的路径，你可以使用`management.endpoints.web.path-mapping`属性。同样的，如果你需要修改基础路径，你可以使用`management.endpoints.web.base-path`。

下面的例子将`/actuator/health`重映射为`/healthcheck`：

**application.properties.**

```
management.endpoints.web.base-path=/
management.endpoints.web.path-mapping.health=healthcheck
```
