> For the complete documentation index, see [llms.txt](https://docs.mews.com/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.mews.com/booking-engine-guide/faq/mews-li-migration.md).

# Migration off the mews.li domain

This is a guide to help you migrate your booking engine off the discontinued `mews.li` domain.

> **Important:** Support for the old domain was discontinued in May 2024 - we are not responsible for the functionality of the booking engine on this domain.

## Standalone Booking Engine migration

Find every occurrence of links containing `https://mews.li` domain pointing to the standalone booking engine hosted on our domain and replace them with `https://app.mews.com`. See [Standalone implementation guide](/booking-engine-guide/booking-engine-standalone/getting-started.md).

### Example

#### ❌ Deprecated implementation

```html
<a href="https://www.mews.li/distributor/6b87e134-8c75-468a-82d4-aca900c43c70">Book Now</a>
```

#### ✅ After migration implementation

```html
<a href="https://app.mews.com/distributor/6b87e134-8c75-468a-82d4-aca900c43c70">Book Now</a>
```

## Widget Booking Engine migration

Replace the domain in your booking engine loading script from `https://mews.li` to `https://api.mews.com`. See [installation guideline](/booking-engine-guide/booking-engine-widget/getting-started.md).

#### ❌ Deprecated implementation

```html
<head>
    ...
    <script src="https://mews.li/distributor/distributor.min.js"></script>
    ...
</head>
```

#### ✅ After migration implementation

```html
<head>
    ...
    <script src="https://api.mews.com/distributor/distributor.min.js"></script>
    ...
</head>
```

After a successful migration, the keyword `mews.li` should no longer appear on your website.

If you have any questions, please open a ticket from **Mews Operations** via the Mews Digital Assistant.


---

# Agent Instructions
This documentation is published with GitBook. GitBook is the documentation platform designed so that both humans and AI agents can read, navigate, and reason over technical content effectively. Learn more at gitbook.com.

## Querying This Documentation
If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter, and the optional `goal` query parameter:

```
GET https://docs.mews.com/booking-engine-guide/faq/mews-li-migration.md?ask=<question>&goal=<endgoal>
```

`ask` is the immediate question: it should be specific, self-contained, and written in natural language.
`goal` is optional and describes the broader end goal you are ultimately trying to accomplish on behalf of the user. GitBook uses it to tailor the answer towards what is most useful for that goal.

The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
