I understand the host vs domain for DNS, but I was questioning why using GCMS, it redirects to just the domain? Is there any benefit?
What if someone wants to use www. host name?
if you visit http://www.jeftek.com, a 301-Redirect is issued pointing to http://jeftek.com
here is the header when visiting http://www.jeftek.com
HTTP/1.1 301 Moved Permanently
Date: Wed, 06 Feb 2008 22:51:04 GMT
Server: Microsoft-IIS/6.0
MicrosoftOfficeWebServer: 5.0_Pub
X-Powered-By: ASP.NET
Location: http://jeftek.com/
Cache-Control: private
Content-Length: 0
I know I am not issuing a 301, so I believe this exists in the Global.ASAX file to do the redirect.
I'm fine with it, but I am just curious as to what benefit this is done?