return Yii::getAlias('@app/web/'.$this->file_zip);
<?php
public function actionDownload() {
$path = \Yii::getAlias('@uploads') ;
$file = $path . '/some-file.pdf';
if (file_exists($file)) {
return \Yii::$app->response->sendFile($file);
}
throw new \Exception('File not found');
}