Hello, I’m new to Netlify and I need your help with a redirect issue
My app has a custom domain registered. My site has a page say mydomain.com/guide I wanted to create a new subdomain say guide.mydomain.com which will show the content of mydomain.com/guide without changing the domain in the browser.
But when I set my redirect code to 200 and go to guide.mydomain.com
it shows me the content of mydomain.com, not mydomain.com/guide
But if I use 301! it shows the content of mydomain.com/guide but changes the domain as well to mydomain.com/guide (which is supposed to happen I know)
So, what should I do?
This is my current _redirects
https://guide.mydomain.com/* https://mydomain.com/guide/:splat 301!
/* /index.html 200