Github Pages无法与西里尔语自定义域正常工作

时间:2018-04-27 16:36:01

标签: dns github-pages cname cyrillic

所以,我正在尝试在github页面上设置自定义域,而我的域包含西里尔字母,我无法添加自定义域名:

enter image description here

但是英文字母都可以:

enter image description here

1 个答案:

答案 0 :(得分:2)

您需要遵循IDNA惯例:

  

为了防止包含连字符的非国际域名被意外解释为Punycode,国际域名Punycode序列有一个所谓的ASCII兼容编码(ACE)前缀,“xn--”,前置。[2]因此,域名“bücher.tld”将在ASCII中表示为“xn - bcher-kva.tld”。

使用python,您可以尝试encode('idna')查找要使用的字符,例如:

$ python
>>> x = u'bücher.tld'
>>> x.encode('idna')
b'xn--bcher-kva.tld'
>>> x.encode('idna').decode('idna')
'bücher.tld'