如何将Html文件添加到cakephp应用程序中?

发布于 2024-10-06 17:07:57 字数 212 浏览 4 评论 0原文

我有一个html文件,想将其添加到cakephp应用程序中,我知道我可以将css和图像文件添加到Webroot文件夹中,并将.html的后缀重写为.ctp,但是如何在我的cakephp应用程序中使用它,就像我可以像IE中的 http://localhost/users/login 一样访问它?

I have a html file and want to add it into cakephp App, I know that I can add css and image files into the Webroot folder, and rewrite the postfix of .html to .ctp, but how to use it in my cakephp app ,just like I can visit it just like http://localhost/users/login in IE?

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

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

发布评论

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

评论(2

汹涌人海 2024-10-13 17:07:57

您可以将其直接放在 app/webroot/ 文件夹中。可以通过 URL http://localhost/filename.html 访问它。

You can place it directly in your app/webroot/ folder. It will be accessible at the URL http://localhost/filename.html.

来世叙缘 2024-10-13 17:07:57

假设您的 HTML 文件名为 myfile.html。

将 myfile.html 复制到 app/views/pages/myfile.ctp

您现在可以在 http://localhost 查看页面/页面/我的文件

Let's assume your HTML file is called myfile.html.

Copy myfile.html to app/views/pages/myfile.ctp

You will now be able to view the page at http://localhost/pages/myfile

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