如何捕获 HTTP 错误 400 - 错误请求并在 asp.net 应用程序或 IIS 7.5 中正确重定向它们
我如何捕获 http 400 错误错误请求,无论是 asp.net 4.0 代码隐藏在 global.asax 文件中还是在 IIS 7.5 中,并使用 301 将它们重定向到某些页面。
错误请求的示例:http://www.monstermmorpg.com/Maps-Dark-Passage----------------------------------------- ------------------------..
你看到最后的 2 个“..”使它成为错误的请求。我无法在 asp.net 代码后面的 global.asax 或 IIS 7.5 上正确捕获它,
感谢任何帮助,谢谢。
How can i catch http 400 error bad requests either asp.net 4.0 code behind like in global.asax file or in IIS 7.5 and redirect them with 301 to the certain pages.
An example of bad request : http://www.monstermmorpg.com/Maps-Dark-Passage--------------------------------------------------..
You see that 2 ".." at the end make it bad request. I could not manage to capture it properly on either global.asax in asp.net code behind or IIS 7.5
any help is appreciated thank you.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您尝试过通过 web.config 吗?
Error.htm 将是一个通用的捕获所有错误页面。
400 错误将被发送到 Redirect.aspx,您可以在其中通过代码或 html 进行重定向
Have you tried via web.config?
Error.htm would be a generic catch all error page.
400 errors would be sent to Redirect.aspx where you could do a redirect via code or html