Live data from Hacker News

To www or not to www?

news.ycombinator.com

1–10 of 23 posts

Re: To www or not to www?

#3
As a technical person, I can recognize a URL when I see it and prefer the non-www version for brevity's sake.

But many non-technical people cannot understand if something is a website URL without the WWW in front of it. It's probably best to add WWW if your target audience is normal humans.

Re: To www or not to www?

#7
With "www". That makes it a lot easier to add in CDN support, DNS based load balancers, and a ton of other tools down the line.

Why? Because you need your domain root to have all sorts of other stuff in it- MX records, SPF keys, and various other things. A lot of CDNs and DNS based tools work really well by utilizing CNAMEs, which you can't do on the root. Putting your website on "www" keeps is as a separate isolated service and makes adding those services easier down the line.

Re: To www or not to www?

#8
post #7

With "www". That makes it a lot easier to add in CDN support, DNS based load balancers, and a ton of other tools down the line. Why? Because you need your domain root to have all sorts of other stuff in it- MX records, SPF keys, and various other things. A lot of CDNs and DNS based tools work really well by utilizing CNAMEs, which you can't do on the root. Putting your website on "www" keeps is as a separate isolated…

This. Don't use your zone apex name as your main site. You will regret it. If visitors come to the non-www version of the site send them a 301 redirect.

Re: To www or not to www?

#10
post #7

With "www". That makes it a lot easier to add in CDN support, DNS based load balancers, and a ton of other tools down the line. Why? Because you need your domain root to have all sorts of other stuff in it- MX records, SPF keys, and various other things. A lot of CDNs and DNS based tools work really well by utilizing CNAMEs, which you can't do on the root. Putting your website on "www" keeps is as a separate isolated…

I'm not sure I understand this advice. The domain root can still have the CNAME, TXT, SPF, MX records, etc. while pointing the zone root to the website's IP. These are all just different record types within the zone, right?
Post reply on HN