我在Google Domains使用“合成记录”将流量从裸域重定向example.com
到www.example.com
:
这适用于的请求http://example.com
,其中有4条A记录都指向Google Apps IP地址(这很有意义,这就是它们处理未映射到A记录的主机名的“综合记录”的方式)。对此类请求的响应为:
HTTP/1.1 302 Found
Location: http://www.example.com
Date: Wed, 30 Sep 2015 17:08:59 GMT
Content-Type: text/html; charset=UTF-8
Server: ghs
Content-Length: 230
X-XSS-Protection: 1; mode=block
X-Frame-Options: SAMEORIGIN
但是,对的请求将https://example.com
被完全忽略。服务器没有响应。在Google将裸域重定向到子域的实现中,还有其他人遇到此限制吗?在没有我自己的A记录的情况下解决此问题的任何建议?