Question
Should I use nginx or route53 for redirect?
I have a question what should I use for subdomain redirection
I want to create
webmail.mywebsite.com and then redirect it to gmail.com
I try to do thet with nginx
server{
server_name webmail.mywebsite.com
301 https://www.gmail.com
}
But nothing happens when I try to open webmail.mywebsite.com ..
So I get idea that maybe I should use route53 if so what do you think what record should I put ?
These answers are provided by our Community. If you find them useful, show some love by clicking the heart. If you run into issues leave a comment, or add your own answer to help others.
×