Hello, My server is running NGINX. My problem is my site is accessible by both IP address and the domain. But I want that when someone browse the IP address the user shoulde be redirected to my domain. Example :: When any one browse through http://107.170.126.xxx he should be redirected to http://mydomain.com
Please can anybody help me? Thanks in advance
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.
This worked for me: <br> <br>server { <br> server_name 107.170.xxx.xxx; <br> return 301 http://mydomain.com; <br>} <br>
Hello dmsumon,
I’m got same problem, but i’ve found a solution from this link http://stackoverflow.com/a/22513456/3086112
Just add simple configuration on your nginx server config.
server { server_name 107.170.126.xxx; # you can add other server_name if you need other IPs # or domain names such as without the www
}