I was able to succesfuly deploy my website but the whole scenerio start when im trying to upload my project using filezila acording to the video tutorial i watch on youtubed the filezila coudnt connect to so i do it manualy
Inside the htdocs folder
I drag and drop my project there and include a .htaccess file
But the page shows i can proceed to my website that i shouild delete the index2.html
So i did ,after deleting the inde2.html file the page show
403 forbiden
Here is the link to my website
openshare.fwh.is
The server looks for an index file in the htdocs folder. if there isn’t an index.html or index.php it cant find anything to serve, and so throws an error.
In a typical Laravel project, you won’t find an index.php or index.html file directly in the root directory of the project. Instead, the index.php file is located in the public directory.
Is the rest of the website in the public directory?
If so, you just need to move everything in the public directory into the htdocs directory. Alternativly you can put an index.php file together that automatically redirects to the /public folder