Hi Dennis,
Following was my original entry in the HTTPD.CONF file:
<VirtualHost <SERVER_IP:80>
ServerName <DOMAIN_NAME.COM>
ServerAlias http://www.<DOMAIN_NAME.COM>
DocumentRoot /home/<PATH_TO_PUBLIC_HTML>
ServerAdmin webmaster@<DOMAIN_NAME.COM>
UseCanonicalName Off
……
This I changed with the following:
<VirtualHost <SERVER_IP:80>
ServerName <DOMAIN_NAME.COM>
ServerAlias http://www.<DOMAIN_NAME.COM> *.<DOMAIN_NAME.COM>
DocumentRoot /home/<PATH_TO_PUBLIC_HTML>
ServerAdmin webmaster@<DOMAIN_NAME.COM>
UseCanonicalName Off
……
Once this change was done the setup was working like a harm 🙂
Yes all steps were followed. The problem was with the Virtual Host settings. We need to apply proper entries to the the httpd.conf file and it worked perfectly there after. Thank you.