在 Kohana 中加载原始 HTML 文件
我需要加载一系列自动生成的 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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
将文件与其他静态资源(样式表、javascript、图像)放在同一文件夹中。
Put the files in the same folder as your other static assets (stylesheets, javascripts, images).
将 html 页面呈现为路线的一部分。
IE。路线:GET /资源/操作
静态 HTML:/public/static.html
To render a html page as a part of a route.
ie. Route : GET /resource/action
Static HTML : /public/static.html