Hello Oceaners,
My client have happy.com and want to use my website builder system. My domain is example.com.
I need to redirect happy.com to happy.example.com. By the way I use nginx. What DNS records and rewrite rules I must use?
regards
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.
server {
listen 80;
server_name happy.com;
return 301 $scheme://happy.example.com$request_uri;
}
If happy.example.com is configured in nginx to use happy.com as another domain then you will just need your client to point their domain name to your server’s IP address or create a CNAME record to point it to happy.example.com.
Basically, on your end you’ll want to modify the line in your server block (in /etc/nginx/sites-enabled/) from:
to
Then restart nginx with
service nginx restart
Your server will now be ready to accept requests for happy.com once your client’s DNS is updated.