I have images saved in / web / uploads / PROJECT in Yii2. How to display them on the page? below are my codes, but the image is broken.
Controller:
$img = Yii::$app->request->baseUrl.'/web/uploads/PROJECT/'; $image = Html::img($img.$img_obj['AVATAR'],["width"=>"600px"]);
View:
echo $data;
Do I have to set any rights to display it? Right-clicking and opening the image in a new tab shows the URL "/web/uploads/PROJECT/3fioobapJ5vRk_wdCEzDJbQWyO66inWO.jpg", which seems to be correct, but the page displays "Not Found (# 404)"
Can anyone advise? Thanks!
source share