Hi friends this is my website http://www.rockingbeats.com/. When i checked it on Alexa.com. But it shows taskala.com details. Why it is shown like this?

Dani AI

Generated

reported Alexa returning a different site's details; and suggested checking subdomain/age and creating an Alexa account. Two important context points for readers years later: the Alexa.com site-ranking product is no longer available, so that line of troubleshooting is obsolete. The practical, verifiable checks today are DNS, HTTP host/redirects, server vhost configuration, CMS site settings, and registrar forwarding or parking.

Quick diagnostic commands (replace yourdomain.com and <IP>):

dig +short A yourdomain.com
dig +short A www.yourdomain.com

curl -I -L http://yourdomain.com
curl -I -s http://<IP> -H "Host: yourdomain.com"

openssl s_client -connect yourdomain.com:443 -servername yourdomain.com

Interpretation and fixes in brief:

  • If DNS A records point to the wrong IP, update them at the registrar/host and wait for propagation.
  • If curling the server IP with the Host header returns another site, the webserver default vhost is serving that content. Add the correct ServerName/ServerAlias (Apache) or server_name (Nginx) and point it to the right document root.
  • If the site redirects to another domain, check .htaccess/nginx rules and CMS settings (WordPress siteurl/home, or equivalent).
  • If the domain is parked/forwarded at the registrar, disable forwarding or remove parking.
  • Verify SSL certificate CN/SAN to ensure it matches the site domain.

Use server logs or analytics for definitive traffic data and Google Search Console to verify ownership and indexing. Make backups before changing server or DNS settings and allow time for DNS/edge caches to clear.

Recommended Answers

All 2 Replies

Member Avatar for Member #949455

Hi friends this is my website http://www.rockingbeats.com/. When i checked it on Alexa.com. But it shows taskala.com details. Why it is shown like this?

Is your domain is your subdomain?

Might be your site is new.Try to make an account in alexa it should work.

Be a part of the DaniWeb community

We're a friendly, industry-focused community of developers, IT pros, digital marketers, and technology enthusiasts meeting, networking, learning, and sharing knowledge.