问题标签 [website-hosting]
For questions regarding programming in ECMAScript (JavaScript/JS) and its various dialects/implementations (excluding ActionScript). Note JavaScript is NOT the same as Java! Please include all relevant tags on your question; e.g., [node.js], [jquery], [json], [reactjs], [angular], [ember.js], [vue.js], [typescript], [svelte], etc.
dns - 如何将多个域名指向同一个 GitHub Pages 站点?
这似乎应该是一项微不足道的任务,但对我来说并没有被证明是一个......
我应该如何将多个域名指向同一个 GitHub Pages 托管站点?
例子:
我test
在 GitHub 上创建了一个帐户并创建了一个存储库test.github.io
我买了test.com
我配置了 test.com 的 DNS 如下
我已经告诉 GitHub Pages 强制执行 https 并注意自定义域test.com
我的网站现在在 test.com 和www.test.com上运行,哇哦!
test.com 的 DNS 配置:
A @ 185.199.108.153
(github的名称服务器)
A @ 185.199.109.153
(github的名称服务器)
A @ 185.199.110.153
(github的名称服务器)
A @ 185.199.111.153
(github的名称服务器)
CNAME @ www.test.github.io
(用于 www 重定向)
我还希望example.com
(以及其他一些域foo.com
,bar.com
和foobar.com
)重定向到test.com
我该怎么做呢?
使用 apache 服务器,这很容易,因为 GitHub Pages 只支持静态站点。
有任何想法吗?
一如既往,感谢您的任何建议!