如何为网站和移动网站配置不同的自定义错误页面?

发布于 2024-12-03 14:26:06 字数 306 浏览 0 评论 0原文

有没有办法为网络应用程序的不同部分配置不同的错误页面?

通常,对于 Web 应用程序,我可以在 web.config 中配置自定义错误页面。例如,

<customErrors defaultRedirect="standarderror.aspx" mode="RemoteOnly">
  <error statusCode="404" redirect="filenotfound.htm"/>
</customErrors>

有没有办法可以为网站和移动网站指定不同的页面?

Is there a way to configure different error pages for different portions of your web app?

Normally, for the web app I can configure a Custom error page in the web.config. e.g.

<customErrors defaultRedirect="standarderror.aspx" mode="RemoteOnly">
  <error statusCode="404" redirect="filenotfound.htm"/>
</customErrors>

Is there a way I can specify different pages for web and mobile site?

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

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

发布评论

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

评论(1

宣告ˉ结束 2024-12-10 14:26:06

您可以在移动版本子目录中创建仅包含自定义错误选项的附加 web.config 文件。

You can create additional web.config file in mobile version subdirectory with only customerrors options.

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