public function actionUnduh($id) {
        $download = PstkIdentifikasi::findOne($id);
        $path = Yii::getAlias('../web/bukti/') . $download->bukti;
        if (file_exists($path)) {
            //return \Yii::$app->response->sendFile($download->pre_paper,@file_get_contents($path));
            return Yii::$app->response->sendFile($path);
        }
    }  
我需要从文件夹web/bukti下载文件,代码没有错误,但代码不起作用,任何人都可以帮助我:(