我正在使用这个 config.yml。
knp_gaufrette:
adapters:
uploaded_files:
local:
directory: "%kernel.root_dir%/../web/uploads"
create: true
filesystems:
uploaded_files:
adapter: uploaded_files
alias: uploaded_files
现在我想访问每个树枝上传的文件。还例如:
<a href="{{ path('gaufrette_download', {system: 'uploaded_files', file: 'test.txt'}) }}>{{ 'Download' | trans }}</a>
该文件应具有类似...的路径
http://localhost/web/uploads/test.txt
我想直接访问文件。没有控制器(动作)。
这可能吗?有任何想法吗?