chrome Devool console Error message
GET ~image_name~.jpeg 403 (Forbidden)
-Gather information from this link
I'm guessing that this 403 issue you're experiencing is in shared hosting.
Create a symbolic link
php artisan storage: link,
contains the full absolute path to the storage / app / public` folder. This is probably the cause of the 403 response from the server.*** The solution is to create a symlink relative to the project root ***
Reference for operations related to symbolic links (linux)
Solution
--Delete the symbolic link created by `php artisan storage: link
ln -s ../storage/app/public public/storage
Re-paste above
Pay attention to the hierarchy to be executed
Reason
――It was the cause as written above
――It seems that the cause is written in the top link
――Is it okay that it was a 403 error because the autloader was written from above so that it wouldn't go to read?
Recommended Posts