试图阻止谷歌搜索结果中显示的“azurewebsites”url,通常我只需在 web 配置中添加一个重定向规则,如下所示:
<rule name="Disable Azure Domain" patternSyntax="Wildcard" stopProcessing="true">
<match url="*" />
<conditions logicalGrouping="MatchAll" trackAllCaptures="false">
<add input="{HTTP_HOST}" pattern="*.azurewebsites.net" />
</conditions>
<action type="Redirect" url="https://www.mysitedomain.org{REQUEST_URI}" redirectType="Permanent" />
</rule>
但是,当在 Azure Front Door 后面的这个特定站点上使用此重定向时,它会导致该站点返回 404。我假设前门必须使用 azurewebsites url,因此这不是一个可行的解决方案。
欢迎任何建议。