gpt4 book ai didi

azure - 在Azure中获取映射的自定义域url

转载 作者:行者123 更新时间:2023-12-03 00:14:20 24 4
gpt4 key购买 nike

我的 Azure Web 应用程序 (myapp.azurewebsites.net) 已映射到自定义域 (client1.mycompany.com)。

我会将其映射到更多自定义域(client2.mycompany.com、client3.mycompany.com 等),每个客户端一个。

在网络应用程序中我正在使用

HttpContext.Current.Request.Url.Host 

获取正在访问应用程序的自定义域地址。但有时它会返回 myapp.azurewebsites.net 而不是自定义域。

知道如何以可靠的方式在 Azure 中自定义域 url 吗?

最佳答案

正如 Admir 在他的回答中所说,默认的 *.azurewebsites.net 绑定(bind)无法删除,但很容易阻止用户在您的网站上使用此域名。

<rewrite>
<rules>
<rule name="Canonical Host Name" patternSyntax="Wildcard" stopProcessing="true">
<match url="*" />
<conditions logicalGrouping="MatchAll">
<add input="{HTTP_HOST}" pattern="client1.mycompany.com" negate="true" />
</conditions>
<action type="Redirect" url="http://client1.mycompany.com/{R:1}" redirectType="Permanent" />
</rule>
</rules>
</rewrite>

关于azure - 在Azure中获取映射的自定义域url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/31914361/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com