如何处理 Coldfusion 中的 404 或页面未找到错误?

发布于 2024-10-17 07:51:02 字数 97 浏览 1 评论 0原文

在 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

呢古 2024-10-24 07:51:02

您有几个选择:

  1. 在 IIS 或 Apache 中,更改默认 404 错误处理程序以指向您选择的 cfm 文件。

  2. 在 Application.cfc 中,设置 onMissingTemplate 函数来处理对发送到 ColdFusion 的 .cfm 文件的请求,然后 Web 服务器检查这些文件是否确实存在。

You have a few options:

  1. In IIS or Apache, change the default 404 error handler to point to a cfm file of your choice.

  2. 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

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文