﻿---
title: Legacy URL mappings
description: This legacy-url-mappings.yml file manages legacy URL patterns for Elastic documentation, mapping the path of each legacy build URL to a list of documentation...
url: https://www.elastic.co/elastic/docs-builder/docs/3221/reference/docs-builder/configure/site/legacy-url-mappings
products:
  - Elastic Docs Builder
---

# Legacy URL mappings
This [`legacy-url-mappings.yml`](https://github.com/elastic/docs-builder/blob/main/config/legacy-url-mappings.yml) file manages legacy URL patterns for Elastic documentation, mapping the path of each legacy build URL to a list of documentation versions. It ensures that users can easily find previous versions of our documentation.
This example maps documentation that references `elastic.co/guide/en/elasticsearch/reference/ to Elastic Stack versioned URL paths:
```yml
en/elasticsearch/reference/:
  product: elastic-stack
  legacy_versions: *stack
```


## Structure

<definitions>
  <definition term="stack anchor">
    Defines a reusable list of version strings for "stack" projects, e.g., [ '8.18', ... ].
  </definition>
  <definition term="mappings">
    A YAML mapping where each key is a legacy documentation URL path (like `en/apm/agent/java/`), and each value is a mapping with:
    - `product`: Specifies the product or project type (e.g., `elastic-stack`, `eck`, `ece`, `self-managed`, etc.). Products must be defined in [`products.yml`](https://github.com/elastic/docs-builder/blob/main/config/products.yml). See [products.yml](https://www.elastic.co/elastic/docs-builder/docs/3221/reference/docs-builder/configure/site/products) for more information.
    - `legacy_versions`: A list of version strings that correspond to the available asciidoc pages.
  </definition>
</definitions>