当另一个域指向它时,如何在heroku上的应用程序中指定规范链接

发布于 2024-09-30 09:46:27 字数 132 浏览 8 评论 0原文

当域指向 Heroku 上的应用程序时,我想将规范链接设置为主域,而不是 Heroku url,当当前 url 是 Heroku url,而不是域时。

我该如何做到这一点而不需要当有人访问主域 url 的网站时,那里的规范链接是什么?

With a domain pointing to an app on Heroku, I want to set the canonical link to the main domain, not the Heroku url, when the current url is the Heroku url, and not the domain..

How do I do that and not have the canonical link there when someone goes to the site at the main domain url?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

月下伊人醉 2024-10-07 09:46:27

您可以使用其中之一

ENV['HTTP_HOST']
ENV['SERVER_NAME']
ENV['DOCUMENT_ROOT']

来检查该站点是否是您的主服务器,如果不是,请打印出规范的 URL。

您还可以通过转储来查看 ENV 变量以获取更多信息:

<%= h ENV.inspect %>

You can use one of

ENV['HTTP_HOST']
ENV['SERVER_NAME']
ENV['DOCUMENT_ROOT']

to check whether the site is your main server and if not, print out the canonical URL.

You can also take a look at the ENV variable by dumping it out for more info:

<%= h ENV.inspect %>
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文