Domain IP address for www and non-www for Canonica

2019-03-08 09:45发布

To handle Canonical URL is it best practice to do a 301 redirect or better to have the same IP Address for both www and non www domain?

For example:

Canonical URL/domain wanted is http://mydomain.com

Domain           | A Record
------------------------------------
mydomain.com     | 58.162.62.34
www.mydomain.com | 58.162.62.34

I understand people may have a CNAME record for www (alias, given that CNAME is called Canonical Name); unsure if this is best practice compared to using the same IP address.

Or is this better.

Domain           | A Record
------------------------------------
mydomain.com     | 58.162.62.34
*  www.mydomain.com 301 redirect to mydomain.com

3条回答
何必那么认真
2楼-- · 2019-03-08 10:13

You may try redirect.center. Its redirects domains using DNS only.
So it will fulfill your DNS configurations:

Domain           | A Record
------------------------------------
mydomain.com     | 58.162.62.34
*  www.mydomain.com 301 redirect to mydomain.com

set your dns record to:

CNAME | www | mydomain.com.opts-https.redirect.center

Note:
The .opts-https. parameter redirect to https domain
If you use only http domain then use .opts-uri.

查看更多
叼着烟拽天下
3楼-- · 2019-03-08 10:20

The mechanisms you describe (A and CNAME records vs. 301 redirects) are part of two different protocols (DNS and HTTP). A and CNAME records have nothing to do with which site your HTTP server serves for different requests.

Let's look at two different DNS configurations:

Configuration 1 (CNAME record)

Host             | Type  | Data
-----------------+-------+-------------
mydomain.com     | A     | 58.162.62.34
www.mydomain.com | CNAME | mydomain.com
  • nslookup mydomain.com resolves to 58.162.62.34
  • nslookup www.mydomain.com resolves to 58.162.62.34

Configuration 2 (A records)

Host             | Type  | Data
-----------------+-------+-------------
mydomain.com     | A     | 58.162.62.34
www.mydomain.com | A     | 58.162.62.34
  • nslookup mydomain.com resolves to 58.162.62.34
  • nslookup www.mydomain.com resolves to 58.162.62.34

In both cases your canonical domain and your www subdomain resolve to 58.162.62.34. However, the only thing your HTTP server will recognize is that it receives requests for both mydomain.com and www.mydomain.com on the same IP address. But it doesn't know whether you used A or CNAME records for that.

TL;DR

You have to use HTTP 301 redirects to enforce the canonical mydomain.com in HTTP requests. But that has nothing to do with your DNS configuration.

查看更多
再贱就再见
4楼-- · 2019-03-08 10:28

In DNS the canonical name record is pointing to the "one true DNS entry". The end result is that DNSName1 has the same IP address as DNSName2.

Comprehension is complicated by the fact that the CNAME is not the canonical name. The CName Record points to the canonical name. (The canonical name is the A record).

Canonical link: For search engines the canonical link in the html header of a page specifies the "one true page". You can get to multiple pages but you use the canonical link to tell the search engine that this page is the same as the other page. Doing this makes the search engine happy that you are not gaming the system by pretending to provide more content where it is only duplication. It only indexes it once.

301 (http) redirects: For search engines this says that page x is now replaced by page y and all the search ranking can be transferred to page y. If it is a "cosmetic" domain-name-standardisation it also tells the search engine to only index one page and is again a way to show that you're not trying to trick the search engine.

查看更多
登录 后发表回答