'how to make the main route of a website end in .ec .com .es in Angular
I am practicing in angular and I would like to know how to make a webpage such as https://www.mercadolibre.com, When you enter, it asks for your country and then it sends you to the route https://www.mercadolibre.com.exampleContry
Solution 1:[1]
You could try window.location.href = 'https://www.mercadolibre.com.exampleCountry' wherever you want the redirect to happen.
Keep in mind that this is an entirely new domain.
You might consider implementing something that redirects to an internal route like https://www.mercadolibre.com/exampleCountry. Not really sure what your use-case is.
Sources
This article follows the attribution requirements of Stack Overflow and is licensed under CC BY-SA 3.0.
Source: Stack Overflow
| Solution | Source |
|---|---|
| Solution 1 | H0-pe |
