如何将Html文件添加到cakephp应用程序中?
我有一个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 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
您可以将其直接放在 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
.假设您的 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