使用 IIS URL 中的端口处理自定义错误
我试图指定一个自定义 (ASPX) 页面来处理 404 错误。
我似乎无法使用 IIS 执行此操作,因为我使用默认端口以外的端口。
我的网站有两个版本,一个是公开的(默认端口),另一个是在另一个端口上,用于测试。 我首先尝试在测试模式下执行此操作。
如果我做: http://www.mysite.com/notapage ...我收到 IIS 404 错误。
如果我做: http://www.mysite.com:1234/notapage ...我得到了 Google错误(我使用 Google Chrome),就好像它无法解析我的网站,即使 http://www.mysite.com/< /a> 有效。
有任何想法吗?
I am trying to specify a custom (ASPX) page to handle 404 errors.
I can't seem to do this with IIS because I use a port other than the default.
I have two versions of my site, one exposed (default port) and one on another port, for testing. I'm trying to do this in testing mode first.
If I do:
http://www.mysite.com/notapage ... I get the IIS 404 error.
If I do:
http://www.mysite.com:1234/notapage ... I get a Google error (I use Google Chrome) as if it cannot resolve my site even though http://www.mysite.com/ works.
Any ideas?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您在哪个级别上将此 ASPX 页面配置为 404? 如果您在默认网站上执行此操作,则它仅适用于您提供的第一个测试链接。
端口 1234 应该由另一个网站监控。 请检查您的 IIS 设置并确保该站点配置正确。
On which level you configure this ASPX page for 404? If you did that on default web site, it only works for first test link you provided.
port 1234 should be monitored by another web site. Please check your IIS settings and make sure that that site was configured correctly.