私はこの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
ファイルに直接アクセスしたい。コントローラー (アクション) はありません。
これは可能ですか?何か案は?