> ## Knowledge Base Index
> Fetch the complete knowledge base index at: https://support.app-hive.dev/sitemap.xml
> Use this file to discover available pages before exploring further.
> Pure-Markdown content can be obtained by appending a '.md' suffix to the content URLs listed in the sitemap (without the trailing slash).

# How can I redirect users to a custom thank you page?

You can set a custom redirect page via **Quotify > Settings > Customization > Thank you redirect:**

![](https://storage.crisp.chat/users/helpdesk/website/ad91e0c51f735800/image_1onq9ve.png)

**Can I redirect users to a different page based on their country?**
Yes, this is possible using a Javascript snippet. You can add this via **Quotify > Settings > Customization > Custom Javascript.** In the example below, the user will be redirected to the page "thank-you-us" if the origin country is **us**, if it's a different country, the user will be redirected to "thank-you".

 
```javascript
window.addEventListener('quotify:submitted', event => {

    if(config.country == 'us') {

        window.parent.location.href = "/thank-you-us";

        return;

    }

    window.parent.location.href = "/thank-you";

});
```
****