http://www.texasladiesaside.org
http://www.texasladiesaside.com
Clicking on the former loads a webpage - clicking on the latter does not. My question is... why?
Per this tool, they both have the same A records - 209.189.226.66.
Also, both are valid Virtual Hosts as the following demonstrates:
<?php
$fsock = fsockopen('www.texasladiesaside.org', 80);
fputs($fsock, "GET / HTTP/1.1\r\n");
fputs($fsock, "Host: www.texasladiesaside.com\r\n\r\n");
while (!feof($fsock))
{
echo fgets($fsock, 1024);
}
So my question is... why isn't www.texasladiesaside.com showing me the same thing as www.texasladiesaside.org?