我的印象是,应该自动提供置于CakePHP 3中插件的webroot /文件夹中的任何文件。但是,我无法从该文件夹中获取文件...
我创建了一个示例项目
https://github.com/CakePHPKitchen/CakePHP-Plugin-Webroot-Issue
在示例项目中,我已经发布了一个名为Elite
的插件,并在plugins/Elite/src/webroot
内放置了一个名为bingo.txt
的文本文件
重现问题
bin/cake server -p 8675
我的问题是,如何检索bingo.txt
?
我是否必须在某处设置设置才能启用该webroot文件夹?
答案 0 :(得分:1)
确保插件已加载到config / bootstrap.php
中Plugin::load('Elite');
然后使用 localhost:8675 / elite / bingo.txt
链接到插件的webroot