Geekflare is supported by our audience. We may earn affiliate commissions from buying links on this site.
Share on:

Redirect IP request to Domain URL – Test and Fix IP Canonical Issue

ip redirect host
Invicti Web Application Security Scanner – the only solution that delivers automatic verification of vulnerabilities with Proof-Based Scanning™.

If you are hosting your website on Cloud or dedicated server then, you will be given dedicated IP by the hosting provider.

This means your website is accessible through domain and IP, both of which could cause duplicate content if the search engine indexes both URL and IP. Duplicate content is not good for SEO, and this is something you should fix it immediately if found.

In this article, I will talk about how to test and fix IP canonical problems in Nginx and Apache webserver.

Test IP Canonicalization

You can either access your IP address manually to check if it’s getting redirected or use the following online tools to test.

Fix IP Canonical issue in Nginx

  • Login to your Nginx server.
  • Take a backup of nginx.conf file
  • Create a new server block like below
server { 
server_name 45.55.20.xx; 
return 301 http://yourdomain.com; 
}
  • Very obvious, you have to change the IP and domain name with yours.
  • Restart Nginx, and you are all good now.

Fix IP Canonical issue in Apache

  • Login to your Apache server
  • Take a backup of httpd.conf file
  • Ensure mod_rewrite is enabled
LoadModule rewrite_module modules/mod_rewrite.so
  • Add following Rewrite rule
RewriteEngine on 
RewriteCond %{HTTP_HOST} ^128.199.100.xxx 
RewriteRule (.*) http://yourdomain.com/$1 [R=301,L]

Make sure you change 128.199.100.xxx to your actual IP.

This is one of the hundreds of SEO metrics, and if interested in more, you should analyze your website for SEO.

Thanks to our Sponsors
More great readings on Apache HTTP
Power Your Business
Some of the tools and services to help your business grow.
  • Invicti uses the Proof-Based Scanning™ to automatically verify the identified vulnerabilities and generate actionable results within just hours.
    Try Invicti
  • Web scraping, residential proxy, proxy manager, web unlocker, search engine crawler, and all you need to collect web data.
    Try Brightdata
  • Semrush is an all-in-one digital marketing solution with more than 50 tools in SEO, social media, and content marketing.
    Try Semrush
  • Intruder is an online vulnerability scanner that finds cyber security weaknesses in your infrastructure, to avoid costly data breaches.
    Try Intruder