I have uploaded my laravel project on shared hosting and my images will not work.
I have added .htaccess
in the root directory and every thing works file except images. My .htaccess
file is below.
RewriteEngine On
RewriteBase /
RewriteRule ^$ public/index.php [L]
RewriteRule ^((?!public/).*)$ public/$1 [L,NC]
My image link is mydomain.com/storage/facilities/May2017/BYKdbdIQCezQ6Gsh05EK.jpg
and it shows
You don't have permission to access /public/storage/facilities/May2017/BYKdbdIQCezQ6Gsh05EK.jpg
on this server.403 ERROR
Is this symlink error? I do not have ssh access so is there any way to link storage folder?