[▲ Vercel Community](/) · [Categories](/categories) · [Latest](/latest) · [Top](/top) · [Live](/live) [Help](/c/help/9) # How to make more producton branches and domains? 84 views · 1 like · 4 posts Tungusss (@tungusss) · 2024-07-19 Greetings! Can anyone help with domains? I want to make a main domain and a subdomain as Production. How to do it? Because any branches other than master are marked as Preview, and I need users to be able to navigate to them without problems Pauline P. Narvas (@pawlean) · 2024-07-19 Hi @tungusss! Welcome to the Vercel Community :smile: I'll leave some useful information here for you to look at: https://vercel.com/docs/projects/domains https://vercel.com/docs/projects/domains/add-a-domain#add-and-configure-domain > Because any branches other than master are marked as Preview, and I need users to be able to navigate to them without problems Can you explain this a bit more? I don't quite understand. Let us know if you have any more questions! Tungusss (@tungusss) · 2024-07-19 As you can see on the screenshot, I have the main domain [ndi.lv](https://ndi.lv) and subdomains: [dev.ndi.lv](https://dev.ndi.lv) - for development, and [en.ndi.lv](https://en.ndi.lv) - for the English translation of the site. How do I make [en.ndi.lv](https://en.ndi.lv) as [ndi.lv](https://ndi.lv) so that it will be labeled Production?  Amy Egan (@amyegan) · 2024-07-22 · ♥ 1 You would need to assign all of the domains to the production branch for them to be seen as `Production` domains.  Translation could be handled within site code rather than in separate deployments. So the subdomains would all point to the `main` deployment and the code would detect the user's language preference to determine what content to show. That's how I've seen most sites handle it. Alternatively, you could set up multiple projects so each translation would be deployed as the production branch in its own project. From there, you could set redirects to move people between the different projects as needed.