how have you referred to the images in your blade view? You will probably need to use the url to theimage, not use a Laravel helper as Laravel knows nothing about public_html
Laravel on Shared Hosting Image issue
I know that is not a good practice to use Laravel on a shared hosting server but for this time i have no other choice right now. So, i put all the files outside the plubic_html folder and move the files inside the project/public folder to the public_html folder and everything works correctly except the images that are on the public_html folder. i tried a several stuff but until now i couldn't manage to show the images. Just in case you need more info, in my public folder i have a image folder with subfolders inside. If you have any suggestion i would appretiate your help.
ok, so if you have htaccess file, any file that does not exist will be directed to index.php
It will then be checked against your routes and a 404 thrown if there is no matching route.
So, why would your web server think the file does not exist?
If your code says
/images/T1T0_logo-tiny.jpg
but your file is actually
/images/t1t0_logo-tiny.jpg
or your folder is
/Images
and to close this down NO you dont need to do anything with the router
Please or to participate in this conversation.