gpt4 book ai didi

Azure 重定向到自定义 404 页面

转载 作者:行者123 更新时间:2023-12-03 05:06:24 27 4
gpt4 key购买 nike

我正在尝试将 Azure 中的 Web 应用程序配置为在 http 状态代码为 404 时重定向到 html 页面。这是 Azure 中的静态 html 站点。我添加了包含这些内容的 web.config 和 ApplicationHost.xdt 文件,但它没有执行任何操作:

<system.webServer>
<httpErrors errorMode="Custom" existingResponse="Auto" defaultResponseMode="ExecuteURL" >
<remove statusCode="404"/>
<error statusCode="404" responseMode="ExecuteURL" path="http://www.website.com/404/index.html" />
</httpErrors>

进行这些更改后,我重新启动了网络应用程序,但它没有执行任何操作。

最佳答案

根据您的网络配置文件,如果将路径更改为“/404/index.html”,它将正常工作。请尝试一下。

<system.webServer>
<httpErrors errorMode="Custom" existingResponse="Auto" defaultResponseMode="ExecuteURL" >
<remove statusCode="404"/>
<error statusCode="404" responseMode="ExecuteURL" path="/404/index.html" />
</httpErrors>
</system.webServer>

关于Azure 重定向到自定义 404 页面,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/42640021/

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