Jun 9, 2021
Deploying-laravel-to-Bluehost
Follow these steps :
1: After upload files to public_html move all your /public files in public_html folder All files like index.php, .htaccess and assets
folder etc.
2: Find the following line in index.php
require __DIR__.’/../bootstrap/autoload.php’;
require __DIR__.’/../project/bootstrap/autoload.php’;
change to
require __DIR__.’/bootstrap/autoload.php’;
require __DIR__.’/project/bootstrap/autoload.php’;
for more example Follow Bleuhost