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?

Recommended Answers

All 4 Replies

virtual hosts are in httpd.conf, do you have that properly set up?

Yes - that was the reason I included the PHP code - to demonstrate that the virtual hosts are correctly setup. If you change the .com domain in the script to digg.com, it won't work as no virtual hosts have been setup for digg.com.

well, there are two ways to do that - either place the site in the default root virtual host (bad idea) or set up two different v-hosts for the two domains, pointing to the same place in the filesystem

oh, another way is to use mod_rewrite to redirect one of the domains to the other

mod_rewrite would require I have two accounts (one for each website) instead of just one.

Regardless, the issue has been resolved.

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.