在 Kohana 中加载原始 HTML 文件

发布于 2024-10-10 13:05:12 字数 130 浏览 1 评论 0原文

我需要加载一系列自动生成的 HTML 文件(源代码文档),这些文件已经独立于目录中。我怎样才能让 Kohana 加载这些文件? (如果我尝试使用现有的控制器/视图设置,Kohana 无法识别目录中的 HTML 文件 - 例如 index.php)

I'm needing to load a series of auto-generated HTML files (source code docs) that are already self-contained in a directory. How can I get Kohana to load these files? (If I try to use my existing controller/view setup Kohana doesn't recognize the HTML files - index.php for example, in the directory)

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(2

永言不败 2024-10-17 13:05:12

将文件与其他静态资源(样式表、javascript、图像)放在同一文件夹中。

Put the files in the same folder as your other static assets (stylesheets, javascripts, images).

再可℃爱ぅ一点好了 2024-10-17 13:05:12

将 html 页面呈现为路线的一部分。

IE。路线:GET /资源/操作
静态 HTML:/public/static.html

        $this->auto_render = false;
        // render cached file
        echo file_get_contents('public/static.html');

To render a html page as a part of a route.

ie. Route : GET /resource/action
Static HTML : /public/static.html

        $this->auto_render = false;
        // render cached file
        echo file_get_contents('public/static.html');
~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文