如何为网站和移动网站配置不同的自定义错误页面?
有没有办法为网络应用程序的不同部分配置不同的错误页面?
通常,对于 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您可以在移动版本子目录中创建仅包含自定义错误选项的附加 web.config 文件。
You can create additional web.config file in mobile version subdirectory with only customerrors options.