Related to this question Why isn't my deployed Laravel 8 application finding images in the storage directory through a symbolic link?.
I am using Laravel to build an application and after deployment I set up a symbolic link to access my public storage. However, when I try to access these files I get a console error that looks like this,
test.jpg:1 GET http://website.com/storage/imgs/test.jpg 403 (Forbidden).
I imagine the reason I am getting the 403 error is because I can't follow symbolic links on SiteGround.
The permission for the symbolic link is 777, for the imgs directory it's 755, and for the image it's 644.
Every answer I have seen has been talking about changing the apache config and I am not sure how to do that on SiteGround unless I just need to create my own?
I had to create my own .htaccess file to change those settings on SiteGround. If so what file would I need to make, where would I put the file, and what would I write in it to allow it to follow the symbolic link if this is the case?
For all I know that's not even why it's not working so any other insight on what might be going on would be greatly appreciated!