如何处理 Coldfusion 中的 404 或页面未找到错误?
在 Coldfusion 中如何处理 404 错误或页面未找到错误,如果找不到任何请求的页面,则显示自定义错误消息的代码是什么。
谢谢,
尤加尔
in coldfusion how to handle 404 error or page not found error, what will be the code to show custom error message in case any requested page is not found.
Thanks,
Yugal
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您有几个选择:
在 IIS 或 Apache 中,更改默认 404 错误处理程序以指向您选择的 cfm 文件。
在 Application.cfc 中,设置 onMissingTemplate 函数来处理对发送到 ColdFusion 的 .cfm 文件的请求,然后 Web 服务器检查这些文件是否确实存在。
担
You have a few options:
In IIS or Apache, change the default 404 error handler to point to a cfm file of your choice.
In Application.cfc, set up the onMissingTemplate function to handle requests for .cfm files that are sent to ColdFusion before the web server checks to see if they actually exist.
Dan