Hi,
I have 2 domains (domain used here is just example), helloworld.my and helloworld.com.my I want to redirect:
A. helloworld.my to www.helloworld.com.my B. www.helloworld.my to www.helloworld.com.my
I managed to redirect the A But i cannot make the B works. Below is my nginx config for hellworld.my
server { listen 80; server_name helloworld.my; return 301 http://www.helloworld.com.my$request_uri; }
server { listen 80; server_name www.helloworld.my; return 301 http://www.helloworld.com.my$request_uri; }
Anyone can help me?
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.
Click below to sign up and get $100 of credit to try our products over 60 days!
@johanrube: Try including the port in the redirect, does that fix it?
Hi, Kamal <br> <br>I have same problem to I want redirect www.mydomain.com to mydomain.com <br>In my digitalocean DNS I have CNAME www @ <br> <br>In my nginx conf ; <br> <br>server { <br> listen 8080; <br> server_name www.myadomain.com; <br> return 301 $scheme://mydomain.com$request_uri; <br>} <br> <br> <br>server { <br> listen 8080; <br> server_name mydomain.com; <br>… <br>} <br> <br>What I missing configuration here? <br> <br> <br>
damn! i forgot that, let me put that first and test it again, thanks kamal!
Do you have valid DNS records for www.helloworld.my? <br> <br>www CNAME @ <br> <br>OR <br> <br>www A your.ip.address