经典的asp响应代码
我们目前有一个经典的 asp 404 错误页面。默认情况下,它返回状态代码 200 错误,我们希望它返回 404 错误代码。如何在经典 asp (vbscript) 中设置页面的状态代码?
We currently have a classic asp 404 error page. By default, it's returning a status code 200 error, and we want it to return a 404 error code. How do you set the status code for a page in classic asp (vbscript)?
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
使用响应对象:
Use the Response object:
从技术上讲,200 是一个状态代码
OK
,而不是错误,但基本思想是您需要告诉响应流返回 404(未找到)状态代码。 这是一种方法。Technically, 200 is a status code
OK
, not an error, but nevertheless, the basic idea is that you need to tell the Response stream to return 404 (Not found) for the status code. Here's one way to do that.